中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

golang中的init函數

發布時間:2020-06-21 20:59:47 來源:億速云 閱讀:181 作者:鴿子 欄目:編程語言

go語言中init函數用于包(package)的初始化,該函數是go語言的一個重要特性,

有下面的特征:

1 init函數是用于程序執行前做包的初始化的函數,比如初始化包里的變量等

2 每個包可以擁有多個init函數

3 包的每個源文件也可以擁有多個init函數

4 同一個包中多個init函數的執行順序go語言沒有明確的定義(說明)

5 不同包的init函數按照包導入的依賴關系決定該初始化函數的執行順序

6 init函數不能被其他函數調用,而是在main函數執行之前,自動被調用

下面這個示例摘自《the way to go》,os差異在應用程序初始化時被隱藏掉了,

var prompt = "Enter a digit, e.g. 3 " + "or %s to quit."

func init() {
    if runtime.GOOS == "windows" {
        prompt = fmt.Sprintf(prompt, "Ctrl+Z, Enter")
    } else { // Unix-like
        prompt = fmt.Sprintf(prompt, "Ctrl+D")
    }
}

下面的兩個go文件演示了:

1 一個package或者是go文件可以包含多個init函數,

2 init函數是在main函數之前執行的,

3 init函數被自動調用,不能在其他函數中調用,顯式調用會報該函數未定義

gprog.go代碼

package main

import (
    "fmt"
)

// the other init function in this go source file
func init() {
    fmt.Println("do in init")
}

func main() {
    fmt.Println("do in main")
}

func testf() {
    fmt.Println("do in testf")
    //if uncomment the next statment, then go build give error message : .\gprog.go:19: undefined: init
    //init()
}

ginit1.go代碼,注意這個源文件中有兩個init函數

package main

import (
    "fmt"
)

// the first init function in this go source file
func init() {
    fmt.Println("do in init1")
}

// the second init function in this go source file
func init() {
    fmt.Println("do in init2")
}

編譯上面兩個文件:go build gprog.go ginit1.go

編譯之后執行gprog.exe后的結果表明,gprog.go中的init函數先執行,然后執行了ginit1.go中的兩個init函數,然后才執行main函數。

E:\opensource\go\prj\hellogo>gprog.exe
do in init
do in init1
do in init2
do in main

注:《the way to go》中(P70)有下面紅色一句描述,意思是說一個go源文件只能有一個init函數,

但是上面的ginit1.go中的兩個init函數編譯運行后都正常執行了,

因此這句話應該是筆誤。

4.4.5 Init-functions
Apart from global declaration with initialization, variables can also be initialized in an init()-function.
This is a special function with the name init() which cannot be called, but is executed automatically
before the main() function in package main or at the start of the import of the package that
contains it.
Every source file can contain only 1 init()-function. Initialization is always single-threaded and
package dependency guarantees correct execution order.

以上就是go語言的init函數詳解的詳細內容,更多請關注億速云其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

朝阳县| 家居| 芦山县| 西青区| 广南县| 钦州市| 松原市| 疏附县| 汝南县| 元朗区| 奉新县| 留坝县| 白城市| 连山| 梅河口市| 遂平县| 高要市| 郧西县| 三都| 达日县| 承德市| 库伦旗| 当涂县| 五河县| 婺源县| 姜堰市| 铜山县| 乌拉特前旗| 商城县| 庄河市| 台东县| 新乡县| 锡林浩特市| 藁城市| 阳春市| 扎赉特旗| 曲麻莱县| 定陶县| 稻城县| 扶余县| 中江县|