码迷,mamicode.com
首页 > 其他好文 > 详细

使用类的静态字段和构造函数,可以跟踪某个类所创建对象的个数

时间:2018-10-21 20:05:11      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:tle   https   get   blog   code   .com   pos   private   创建   


package TongJi;

public class Duixiang {
    private static int n;
    public Duixiang()
    {
        n++;
    }
    public static int getNum()
    {
        return n;
    }
    public static void main(String[] args) {
        
        Duixiang t1=new Duixiang();
        Duixiang t2=new Duixiang();      
        System.out.println("一共创建了:"+Lianxi.getNum()+"个对象");
    }

}

 

 
 

 

 

使用类的静态字段和构造函数,可以跟踪某个类所创建对象的个数

标签:tle   https   get   blog   code   .com   pos   private   创建   

原文地址:https://www.cnblogs.com/zhangzhongkun/p/9826441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!