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