我正在学习Go语言中的指针。并设法写了像这样的东西:
func hello(){
fmt.Println("Hello World")
}
func main(){
pfunc := hello //pfunc is a pointer to the function "hello"
pfunc() //calling pfunc prints "Hello World" similar to hello function
}
有没有一种方法可以声明函数指针而无需像上面那样定义它?我们可以像在C语言中一样编写一些东西吗?
例如 void (*pfunc)(void);
慕森王
相关分类