62,625
社区成员
发帖
与我相关
我的任务
分享



public class PersonTest {
final String a;
public PersonTest(String a) {
super();
this.a = a;
}
// {
// this.a = "这是被允许的";
// }
public static void main(String[] args) {
PersonTest p = new PersonTest("这也是被允许的");
// PersonTest p = new PersonTest();
System.out.println(p.a);
}
}