這篇文章將為大家詳細(xì)講解有關(guān)go中anonymous function怎么用,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)是一家專業(yè)提供鄖西企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站建設(shè)、H5場(chǎng)景定制、小程序制作等業(yè)務(wù)。10年已為鄖西眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。package main
import "fmt"
// function add
func add(a, b int) int {
return a + b
}
// 1
func testFunc1() {
// function "add" to var "f1" // then "f1" is a function f1 := add // type of f1 = func(int int) int fmt.Printf("type of f1 = %T\n", f1) // call function "f1" // params are 2 and 5 sum := f1(2, 5) // sum = 7 fmt.Printf("sum = %d\n", sum)
}
// 2
func testFunc2() {
// anonymous function to var "f1", then "f1" is a function f1 := func(a, b int) int { return a + b } // type of f1 = function(int, int) int fmt.Printf("type of f1 = %T\n", f1) // call function f1, params are 2 and 5 sum := f1(2, 5) // sum = 7 fmt.Printf("sum = %d\n", sum)
}
// 3
func testFunc3() {
var i = 0
// the statement after "defer" will be pushed into stack first // so the value of var "i" will be "0" // defer i = 0 defer fmt.Printf("defer i = %d\n", i) i = 100 // i = 100 fmt.Printf("i = %d\n", i) return
}
// 4
func testFunc4() {
var i = 0
// the anonymous function after "defer" will be pushed into stack first // but at this time, the statement in function will not be pushed into stack // so at this time the value of var "i" is not specific // the value of var // at the end the value of var "i" is 100 defer func() { fmt.Printf("defer i = %d\n", i) }() i = 100 // i = 100 fmt.Printf("i = %d\n", i) return
}
func main() {
//testFunc1()
//testFunc2()
//testFunc3()
testFunc4()
}
關(guān)于“go中anonymous function怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國(guó)云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開(kāi)啟,新人活動(dòng)云服務(wù)器買(mǎi)多久送多久。
分享標(biāo)題:go中anonymousfunction怎么用-創(chuàng)新互聯(lián)
文章來(lái)源:http://www.rwnh.cn/article0/ccieoo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、電子商務(wù)、關(guān)鍵詞優(yōu)化、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容