Groovy(二)
作者:互联网
Groovy(二)基础
String
创建字符串字面常量
通过Groovy将''
定义的类型认定为String
println "-----------------String---------------"
def tStr = "hello word";
println 'hello word'.class
char tChar = 'c'
println tChar.class
多行字符串
减少连接符和转义字符的使用
sb = new StringBuffer()
sb.append('''
^ ^
____
''')
println sb
标签:Groovy,String,tChar,println,sb,class 来源: https://blog.csdn.net/qq_39079428/article/details/122724541