[Groovy] 请教关于groovy的一个问题:在groovy的User Guide关于Strings and GString中
小飞279
2013-07-11
今天看到groovy的User Guide的Strings and GString一章,发现其中有句话不太明白,想请教下大家,原文内容如下:
It is also possible to use triple single quotes for multi-line strings, but they are not GStrings, so interpolating variables doesn't work in that case. 他的意思是说如果仅仅使用"""而不用"""\的话,groovy不认为他是个GString吗?可是我做测试发现都加不加最后的\都一样啊? |
|
key232323
2013-07-12
不是的,3个单引号——
''' ''' 是非GStrng,不能里面用${}等表达式的 三个双引号才可以 |