## 与其他编程语言的差异
* string 是数据类型,不是指针或者引用类型,默认初始化的空值是空字符串,不是`nil`。
* string 是只读的 byte slice
* string 的 byte 数组可以存放任何数据

