Go中defer的延遲調用

來源:互聯網
上載者:User

標籤:通過   關鍵字   一個   main   this   test   def   printf   資源   

// code_006_defer_usage project main.gopackage mainimport ( "fmt")func test(x int) { fmt.Println(100 / x)}func main() { //關鍵字 defer ?於延遲一個函數或者方法(或者當前所建立的匿名函數)的執行。 //注意,defer語句只能出現在函數或方法的內部。 fmt.Println("this is a test") defer fmt.Println("this is a defer") //defer語句經常被用於處理成對的操作,如開啟、關閉、串連、中斷連線、加鎖、釋放鎖。 //通過defer機制,不論函數邏輯多複雜,都能保證在任何執行路徑下,資源被釋放。 //釋放資源的defer應該直接跟在請求資源的語句後。 //如果一個函數中有多個defer語句,它們會以LIFO(後進先出)的順序執行。 //哪怕函數或某個延遲調用發生錯誤,這些調用依舊會被執?。 defer fmt.Println("aaaa") defer fmt.Println("bbbb") defer test(0) defer fmt.Println("ccc") a, b := 10, 20 defer func(x int) { fmt.Println("\ndefer:", x, b) //b閉包引用 }(a) a += 10 b += 100 fmt.Printf("a= %d, b= %d", a, b)}

Go中defer的延遲調用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.