golang工程約定,分包和編譯

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

         go-lang已經發布了go1.1.2,前段時間看了一下go語言的教程,就喜歡上了這門語言,但使用多個檔案編譯是碰到一些麻煩,引用出錯編譯通不過,google之找到了相關教程:

             https://golang.org/doc/code.html

             http://lavafree.iteye.com/blog/1683363,

             http://blog.studygolang.com/2012/12/go項目的目錄結構/

        並按自己的理解記錄一下,並進行了實驗。我的項目目錄如下所示:

goproject                          # 工程根目錄 |.........src                      # 原始碼            |.....com               |. ..main                    |...main.go    #這個必須在main包,有main函數               |......sqrt                    |...sqrt.go    #包內原始碼檔案,不包含main函數

如上結構是go的目錄結構了,其實bin和pkg是不用自己建立的,go編譯自動產生。


實戰一下:

1.在d:\下建立goproject目錄

2.設定GOPATH環境變數

        GOPATH = d:\goprojcet

3.goproject下建立src

4.src下建立sqrt,旗下建立sqrt及sqrt.go檔案

5.sqrt.go檔案輸入代碼

package sqrt// Sqrt returns an approximation to the square root of x.func Sqrt(x float64) float64 {// This is a terrible implementation.// Real code should import "math" and use math.Sqrt.z := 0.0for i := 0; i < 1000; i++ {z -= (z*z - x) / (2 * x)}return z}


6.com下建立main,旗下建立main.go
7.main.go輸入

package mainimport ("com/sqrt""fmt")func main() {fmt.Printf("Hello, world.  Sqrt(2) = %v\n", sqrt.Sqrt(2))}

8.命令列切換到src下,輸入命令
         go install com/sqrt
         這時候根goproject下產生一個pkg

9.src下輸入命令
       go install com/main
編譯產生main(main.exe)命令列

10.執行./main(main.exe)就有輸出了

go的這種約定很簡潔,其實GOROOT就相當於(JAVA_HOME)
GOPATH 相當於PATH,依賴路徑,可以配置多個,linux用冒號(:)隔開,window用分號(;)
GO的引用是 一級包/二級包/包名 比如com/sqrt



相關文章

聯繫我們

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