TCL錯誤處理
Tcl的錯誤處理設置有error 和 catch命令。對每個這些命令語法如下所示。
Error 語法
error message info code
在上麵的 error命令語法,message是錯誤信息,info是在全局變量errorInfo中設置,code是在errorCode設置的全局變量。
Catch 語法
catch script resultVarName
另外,在上述catch 命令語法,腳本是要執行的代碼,resultVarName是可變保存錯誤或結果。 catch命令返回0,如果冇有錯誤,如果有一個錯誤,返回1。
對於簡單的錯誤處理一個例子如下所示。
#!/usr/bin/tclsh proc Div {a b} { if {$b == 0} { error "Error generated by error" "Info String for error" 401 } else { return [expr $a/$b] } } if {[catch {puts "Result = [Div 10 0]"} errmsg]} { puts "ErrorMsg: $errmsg" puts "ErrorCode: $errorCode" puts "ErrorInfo:\n$errorInfo\n" } if {[catch {puts "Result = [Div 10 2]"} errmsg]} { puts "ErrorMsg: $errmsg" puts "ErrorCode: $errorCode" puts "ErrorInfo:\n$errorInfo\n" }
當執行上麵的代碼,產生以下結果:
ErrorMsg: Error generated by error ErrorCode: 401 ErrorInfo: Info String for error (procedure "Div" line 1) invoked from within "Div 10 0" Result = 5
正如在上麵的例子中看到,我們可以創建自己的自定義錯誤消息。同樣地,也能夠捕捉由Tcl所產生的錯誤。一個例子如下所示。
#!/usr/bin/tclsh catch {set file [open myNonexistingfile.txt]} result puts "ErrorMsg: $result" puts "ErrorCode: $errorCode" puts "ErrorInfo:\n$errorInfo\n"
當執行上麵的代碼,產生以下結果:
ErrorMsg: couldn't open "myNonexistingfile.txt": no such file or directory ErrorCode: POSIX ENOENT {no such file or directory} ErrorInfo: couldn't open "myNonexistingfile.txt": no such file or directory while executing "open myNonexistingfile.txt"