62,635
社区成员




public class Test {
public String s;
public Test(String news) {
this.s = news;
}
public static void main(String[] args) {
Test a = new Test("AAA");
Test b = new Test("BBB");
System.out.println(s); //请问系统应该显示啥?
}
}