kotlin之字符串
在kotlin 中 使用String 表示字符串类型,如下二类字符串
一 普通字符串
var s1 = "hello world"
二 保留原始格式的字符串
var s2 = """ hello world """
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!
在kotlin 中 使用String 表示字符串类型,如下二类字符串
一 普通字符串
var s1 = "hello world"
二 保留原始格式的字符串
var s2 = """ hello world """