-6

このコード スニペットで作成されるオブジェクトの数は?

String x = "xyz"; // #1
x.toUpperCase(); /* Line 2 */ #2
String y = x.replace('Y', 'y'); //Will here new object is created or not?
y = y + "abc"; // #3 ?
System.out.println(y);

三。おもう..?

4

1 に答える 1