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

踪某个类所创建对象的个数

时间:2018-10-21 16:49:50      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:创建对象   对象   public   count   class   oid   out   highlight   java   

public class new1 {
static int n=0;
new1(){
	n++;
}
static void count(){
	System.out.println(n);
}

}
public class lab {
public static void main(){
	new1 a=new new1();
	System.out.println(a);
	new1 b=new new1();
	System.out.println(b);
	new1 c=new new1();
	System.out.println(c);
	new1.count();
}
}

  

踪某个类所创建对象的个数

标签:创建对象   对象   public   count   class   oid   out   highlight   java   

原文地址:https://www.cnblogs.com/NCLONG/p/9825436.html

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