1
當我定義功能如何根據參數類型獲取返回值?
func test(a int, b int) int {
//bla
}
我必須設置參數和返回值類型。如何根據參數類型返回值,例如
func test(argument type) type {
//if argument type == string, must return string
//or else if argument int, must return integer
}
我可以這樣做嗎?