¿¹Á¦

public class ClassA {
String s;
public void methodA {
s = new Integer(1).toString();
}

}
¼Ö·ç¼Ç
Integer.toString(1)·Î ¹Ù²Ù½Ê½Ã¿À.

public class ClassA {
String s;
public void methodA {
s = Integer.toString(1);
}

}