go語言defer執行時機簡單分析

來源:互聯網
上載者:User

見代碼:

package mainimport (       "fmt"       "runtime")func GetFunctionName() string {       pc := make([]uintptr, 10)       runtime.Callers(2,pc)       f := runtime.FuncForPC(pc[0])       return f.Name()}func testwhendefertorun() (rc int) {       defer func() {              fmt.Printf("i am defer , rc: %d, at: %s\n", rc, GetFunctionName())              rc = 2       }()       //return 1       return func() int {              fmt.Printf("i am return, rc: %d, at: %s\n", rc, GetFunctionName())              return 1       }()}func main()  {       x := testwhendefertorun()       fmt.Printf("i am main, rc: %d, at: %s\n", x, GetFunctionName())}

程式輸出:

i am return, rc: 0, at: main.testwhendefertorun.func2
i am defer , rc: 1, at: main.testwhendefertorun.func1
i am main, rc: 2, at: main.main


程式的輸出結果正驗證了以下紅色文字的描述,“func1”就是那個defer順延強制的函數,其輸出表明:當前函數(外圍函數)“testwhendefertorun”的return傳回值為1,

 表明延遲函數是在傳回值計算之後執行的;再者“main.testwhendefertorun.func1”表明了調用棧: main --> testwhendefertorun -- >func1 ; 

函數func1是在函數testwhendefertorun返回之前執行的,故得以下結論:

“defer語句用於延遲一個函數或者方法(或者當前所建立的匿名函數)的執行,它會在外圍函數或者方法返回之前但是其傳回值(如果有的話)計算之後執行。這樣就有可能在一個被順延強制的函數內部修改外圍函數的命名傳回值”


注意:上段紅色文字摘引自:《go語言程式設計》Mark Summerfield著

注意: 此文章只是我個人筆記, 如有錯漏,請一定指正, 共同學習, 我的郵箱: htyu_0203_39@sina.com

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.