通过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