在定义字符串的时候,可以使用 反引号 进行包括,这样就可以进行多行字符串的编译了,例如:
import "fmt" func main() { str := `hello world 你好,世界` fmt.Println(str) } // 输出: //hello world //你好,世界细节决定成败!
个人愚见,如有不对,恳请扶正!
在定义字符串的时候,可以使用 反引号 进行包括,这样就可以进行多行字符串的编译了,例如:
import "fmt" func main() { str := `hello world 你好,世界` fmt.Println(str) } // 输出: //hello world //你好,世界细节决定成败!
个人愚见,如有不对,恳请扶正!
内容版权声明:除非注明,否则皆为本站原创文章。