课后作业03-使用类的静态字段和构造函数,我们可以跟踪某个类所创建对象的个数。请写一个类,在任何时候都可以向它查询“你已经创建了多少个对象?”
//代码
package test.two;
public class count
{
public static int numb; //numb为类所创建对象的个数
public count()
{
numb ++; //统计个数,每创建一个类 numb++
}
public static int getNumb(int numb)
{
return numb; //返回得到numb的最终的值
}
public static void main (String args[])
{
count a1 = new count();
count a2= new count();//创建对象
System.out.println("创建对象个数是:"+count.getNumb(numb));
}
}
结果截图: