go anonymous function
import "fmt"
//function addfunc add(a, b int) int {return a + b}
//1func 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
", f1)
// call function "f1"
// params are 2 and 5
sum := f1(2, 5)
// sum = 7
fmt.Printf("sum = %d
", sum)
}
//2func 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
", f1)
// call function f1, params are 2 and 5
sum := f1(2, 5)
// sum = 7
fmt.Printf("sum = %d
", sum)
}
//3func 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
", i)
i = 100
// i = 100
fmt.Printf("i = %d
", i)
return
}
//4func 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
", i)
}()
i = 100
// i = 100
fmt.Printf("i = %d
", i)
return
}
func main() {//testFunc1()//testFunc2()//testFunc3()testFunc4()}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Go Fiber 및 PlanetScale로 REST API 구축 - 4부다시 사용자 핸들러에 UpdateUser라는 새 함수를 추가합니다. 업데이트 사용자를 main.go에 등록 이제 응용 프로그램을 다시 실행하십시오. 이전에 생성한 사용자를 업데이트합니다. 응답 사용자가 존재하지 않을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.