在被创建的对象个数很多的时候,我们需要知道这些对象个数.
做法是:在类的构造方法里面,写一个静态变量的count++,后面每创建一个对象时,均会自加一次.
public class Student{
int name;
static count = 0;
public Student(){
count++;
}
}
public class Test{
public static void main(String[] args){
Student s1 = new Student();
Student s2 = new Student();
Student s3 = new Student();
System.out.println(s3.count); //s1调用也可
}
}