3
ग्रोवी मल्टी-लाइन स्ट्रिंग के साथ क्या गलत है?
ग्रूवी स्क्रिप्ट एक त्रुटि उठाती है: 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" ) क्यों?