-1
我一直在使用Golang的「testing」包編寫測試用例。而且我遇到了必須將數組和函數指針寫入表的情況。在struct(Golang)中寫入數組
我嘗試以下操作:
type myFunctionType func([]float64, []float64) float64
var testMatrix = []struct {
dataX []float64
dataY []float64
result float64
myFunction myFunctionType
} {
{ {2, 3}, {8, 7}, 1, doMagicOne},
{2, 3}, {8, 7}, 1, doMagicTwo},
}
但每次我最終得到時間的跟蹤誤差或別的東西:
missing type in composite literal
在上述任何輸入?提前致謝。
Kenny,謝謝你的回答。我一直在嘗試[]浮動({1,2}),並認爲什麼是錯的! –