您的位置:首页 > 移动开发 > Objective-C

how to know how many objects a class has generated?

2011-12-02 07:28 302 查看
How to know how many objects has been generated for a class?
We need use the “static” knowledge. Every time you new an object, you will call the constructor(s) of the class. And the “static” property can be updated every time.
So, see below sample:
——————————
package ch.allenstudy.newway01;
public class TestStatic_1
{
public static void main(String[] args)
{
System.out.println(“Now the object number is: ” + AA .getCnt());
AA aa1 = new AA();
System.out.println(“Now the object number is: ” + AA .getCnt());
AA aa2 = new AA(3);
System.out.println(“Now the object number is: ” + AA .getCnt());
}
}
class AA
{
private int i;
private static int cnt = 0;

public AA()
{
++cnt;
}

public AA(int i)
{
this.i = 0;
++cnt;
}

public static int getCnt()
{
return cnt; //also can write as: return AA.cnt;
}
}
——–REsult———
Now the object number is: 0
Now the object number is: 1
Now the object number is: 2
———————–
要知道,只要你实例化一个对象,就要调用类的 Constructor。当然,一个实例化对象,只能调用一个constructor,在这个例子中,要么调用 AA(),要么调用 AA(i)。
所以我们在每个Constructor里面都写了 ++cnt。这样,只要你实例化,我们 cnt 的值就加 1。因为 cnt 是一个静态属性,所以我们可以直接 return AA.cnt。这里简写为 return cnt
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐