1. 程式人生 > >go 函式型別

go 函式型別

在go中,函式也可以被當成資料型別

e.g:下面有兩個函式,+、-,然後定義了一個函式型別FuncType1,然後對funcType1附於不同的函式,則funcType1就可以執行相應的函式

package main

import (
   "fmt"
   _ "testinit"
)


func main() {
   a:=10
   b:=10
   var funcType1 FuncType1  = Add1
   fmt.Println(funcType1(a,b))
   funcType1 = Minus1
   fmt.Println(funcType1(a,b))
}

func init()  {
   fmt.Println("main init()")
}

func Add1(a,b int) int {
   return a+b
}

func Minus1(a,b int) int  {
   return a-b
}

//定義函式型別
type FuncType1 func(int,int) int

 這樣就是對funcType1附了兩次值,還可以進一步調整,如下

package main

import (
	"fmt"
	_ "testinit"
)


func main() {
	a:=10
	b:=10
	/*var funcType1 FuncType1  = Add1
	fmt.Println(funcType1(a,b))
	funcType1 = Minus1
	fmt.Println(funcType1(a,b))*/

	fmt.Println(Cal(a,b,Add1))

	fmt.Println(Cal(a,b,Minus1))
}

func init()  {
	fmt.Println("main init()")
}

func Add1(a,b int) int {
	return a+b
}

func Minus1(a,b int) int  {
	return a-b
}

type FuncType1 func(int,int) int

//定義函式,將函式型別當成一種函式引數 func Cal(a,b int,funcType FuncType1) (result int) { return funcType(a,b) }

  

定義一個新的函式,將函式型別當成一種函式引數,這樣就可以不用給函式型別附值,而直接用,方便了很多,也靈活了很多