package main
import ("fmt")
func main() {
var bts []byte =nil
fmt.Println("the result :", string(bts)) // why not panic ?
// the result :
}
将nil [] byte变量转换为string不会感到惊慌。 为什么不?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- douzai8285 2017-06-09 11:00关注
In general for any type that can be
nil
you can generate whatever string representation you like! It's because when implementingfmt.Stringer
interface (see here) - or any function on a type that can benil
- you can have anil
for receiver value. In other words you can call methods onnil
objects in contrast with OOP languages. In this sample code, you'll seeʕ◔ϖ◔ʔ hey nilo!
for anil
value of the second type, butBOO DATA!!! :: Hi! :)
when you have an element inside (it prints just the first element as a sample code).And again keep in mind
nil
is typed in go.本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报