11

以下の特徴を発見しました。

b := "a"[0]
r := 'a'
fmt.Println(b == r) // Does not compile, cannot compare byte and rune
fmt.Println("a"[0] == 'a') // Compiles and prints "true"

これはどのように作動しますか?

4

2 に答える 2