我使用.NET 2.0和finally塊似乎沒有被得到執行,如果出線倍。例如,如果我看到消息「Child Thread Timed Out ...」,我將看不到消息「Finally block started ...」。這意味着數據庫對象(Oracle.DataAccess)可能無法正確清理。有沒有辦法在子線程中強制清理,還是應該將清理移動到主線程並將數據庫對象傳遞給子線程? private vo
我在互聯網上發現了一些代碼(稍作修改)。 它只是請求網頁的內容。 Private Sub readWebpage(ByVal url As String)
Dim Str As System.IO.Stream
Dim srRead As System.IO.StreamReader
Try
' make a Web request
Dim r
有什麼用最後 void ReadFile(int index)
{
// To run this code, substitute a valid path from your local machine
string path = @"c:\users\public\test.txt";
System.IO.StreamReader file = new Syst
我是Java初學者,但我認爲在使用try-catch-finally時,我不必使用throws SQLException來聲明異常。但是,如果我不使用它的編譯器給我的錯誤: "unreported exception java.sql.SQLException; must be caught or declare to be thrown". 我包括一個catch所以我不知道爲什麼這樣的錯誤發生。