3
Có gì sai với Chuỗi nhiều dòng Groovy?
Tập lệnh Groovy gây ra lỗi: def a = "test" + "test" + "test" Lỗi: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Mặc dù tập lệnh này hoạt động tốt: def a = new String( "test" + "test" + "test" ) Tại sao?