Goで複数の戻り値をキャストする慣用的な方法は何ですか?
1行で実行できますか、それとも以下の例で行ったような一時変数を使用する必要がありますか?
package main
import "fmt"
func oneRet() interface{} {
return "Hello"
}
func twoRet() (interface{}, error) {
return "Hejsan", nil
}
func main() {
// With one return value, you can simply do this
str1 := oneRet().(string)
fmt.Println("String 1: " + str1)
// It is not as easy with two return values
//str2, err := twoRet().(string) // Not possible
// Do I really have to use a temp variable instead?
temp, err := twoRet()
str2 := temp.(string)
fmt.Println("String 2: " + str2 )
if err != nil {
panic("unreachable")
}
}
ちなみに、casting
インターフェースに関しては呼ばれていますか?
i := interface.(int)