首页 > 试题广场 >

阅读以下程序,写出输出结果。

[问答题]

阅读以下程序,写出输出结果。

public class GroupTwo {
private int count; 
 
public class Student { 
String name;
 
public Student(String n1) {
name = n1;
count++; 
}
 
public void Output() {
System.out.println(this.name);
}
}
 
public void output() { 
Student s1 = new Student("Johnson"); 
s1.Output();
System.out.println("count=" + this.count);
}
 
public static void main(String args[]) {
GroupTwo g2 = new GroupTwo();
g2.output();
}
}

Johnson

count=1


发表于 2017-05-17 16:17:40 回复(0)