i := 1
b := []byte{0x00, 0x01, i}
とすると
$ go build
cannot use i (type int) as type byte in append
と怒られる。どうやら型がだめらしい。
i := 1
b := []byte{0x00, 0x01, uint8(i)}
とすれば大丈夫。
なにこれ地味にはまった。。。
Go to list of users who liked
More than 5 years have passed since last update.
i := 1
b := []byte{0x00, 0x01, i}
とすると
$ go build
cannot use i (type int) as type byte in append
と怒られる。どうやら型がだめらしい。
i := 1
b := []byte{0x00, 0x01, uint8(i)}
とすれば大丈夫。
なにこれ地味にはまった。。。
Register as a new user and use Qiita more conveniently
Go to list of users who liked