兄弟連Go語言培訓帶你實戰GO案例(7)Go Defer

來源:互聯網
上載者:User
  兄弟連Go語言培訓課程體系設計架構包括了區塊鏈的基礎語言Go語言、區塊鏈後端技術體系、區塊鏈公鏈、區塊鏈分布式應用開發等內容講解,以及到最後的面試指導和項目實戰。課程由清華微軟Google名師團隊精心打造,曆時半年時間共同研發而出。  GoDefer  Defer用來保證一個函數調用會在程式執行的最後被調用。通常用於資源清理工作。packagemain  import"fmt"  import"os"  //假設我們想建立一個檔案,然後寫入資料,最後關閉檔案  funcmain(){  //在使用createFile得到一個檔案對象之後,我們使用defer  //來調用關閉檔案的方法closeFile,這個方法將在main函數  //最後被執行,也就是writeFile完成之後  f:=createFile("/tmp/defer.txt")  //Windows下面使用這個語句  //f:=createFile("D:\\Temp\\defer.txt")  defercloseFile(f)  writeFile(f)  }  funccreateFile(pstring)*os.File{  fmt.Println("creating")  f,err:=os.Create(p)  iferr!=nil{  panic(err)  }  returnf  }  funcwriteFile(f*os.File){  fmt.Println("writing")  fmt.Fprintln(f,"data")  }  funccloseFile(f*os.File){  fmt.Println("closing")  f.Close()  }  運行結果  creating  writing  closing  使用defer來調用closeFile函數可以保證在main函數結束之前,關閉檔案的操作一定會被執行。210 次點擊  
相關文章

聯繫我們

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