最佳答案
Groovy 脚本会引发一个错误:
def a = "test"
+ "test"
+ "test"
错误:
No signature of method: java.lang.String.positive() is
applicable for argument types: () values: []
虽然这个脚本运行良好:
def a = new String(
"test"
+ "test"
+ "test"
)
为什么?