2013-07-09 210 views
1

我想在try catch中包裝簡單的語句。問題是我能夠找到的所有示例都會討論預定義的錯誤。嘗試捕捉語句realBasic

我需要一個通用的錯誤,類似於C#中的try/catch。

回答

2

對於泛型嘗試捕捉你可以這樣做:

try 

    ...put some code here 

catch 

    ...do something for ANY exception here. 

finally 

    ...code here that runs IF an exception occurs 

end try 

閉鎖段具有可選參數捕捉某些類型的錯誤(你見過的例子)。第一段給出的定義爲http://docs.xojo.com/index.php/Try

Try 

// Your code 

Catch [ErrorParameter] [As ErrorType] 

//exception handlers 

[ Finally ] 

//code that executes even if runtime exceptions were raised 

End [Try] 
+0

這樣做就可以了! – EnterpriseXL