标签:创建 main count() string stat method void get turn
package 课后作业3;
public class count
{
public static int num;
public count()
{
num ++; //统计个数,每创建一个类 num++
}
public static int getNum()
{
return num; //返回得到num的最终的值
}
public static void main(String[] args)
{
// TODO Auto-generated method stub
count c1 = new count();
count c2 = new count();
count c3 = new count();
count c4 = new count();
count c5 = new count();
count c6 = new count();
System.out.println("创建对象的个数是:"+count.getNum());
}
}
使用类的静态字段和构造函数,我们可以跟踪某个类所创建对象的个数。请写一个类,在任何时候都可以向它查询“你已经创建了多少个对象?”。
标签:创建 main count() string stat method void get turn
原文地址:http://www.cnblogs.com/ljl1998/p/7712231.html