跟踪某个类所创建对象的个数
package Demo01; public class demo01 { private static int n; public demo01() { n++;//次new一个对象的时候都可以给n加1 } public static int getNum() { return n;//返回n值 } public static void main(String[] args) { // TODO 自动生成的方法存根 demo01 t1=new demo01(); demo01 t2=new demo01(); demo01 t3=new demo01();//创建对象 System.out.println("共有对象个数为:"+demo01.getNum()); } }
结果: