0
你能否就這個問題提出建議。 我剛開始學習golang,並已經因這種情況而窒息。golang,使用結構作爲函數的參數
例如:
package main
import (
"fmt"
)
type X struct{
x string
}
type Y struct{
y string
}
func main() {
var x []X
var y []Y
f(x)
f(y)
}
func f(value interface{}){
if(typeof(value) == "[]X"){
fmt.Println("this is X")
}
if(typeof(value) == "[]Y"){
fmt.Println("this is Y")
}
}
expected output: this is X
this is Y
value interface{}
是錯誤的類型。我如何將不同的結構放入一個函數中,然後動態定義它的類型。
是這樣的可能嗎? 謝謝。
你有一個變量,並具有相同名稱的功能。你在做什麼? – JimB
已更新。希望,現在很清楚 – touchman
你在尋找一個類型斷言或類型開關?可能的重複:https://stackoverflow.com/questions/6996704/how-to-check-variable-type-at-runtime-in-go-language – JimB