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

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

时间:2018-10-21 22:55:12      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:ati   静态   []   static   turn   个数   pre   style   创建   

package test1021;

public class qwq {
    private static int n = 0;
    public qwq() {
        n += 1;
    }
    public static int getNumber() {
        return n;
    }
    
    public static void main(String[] args) {
        qwq q1 = new qwq();
        qwq q2 = new qwq();
        qwq q3 = new qwq();
        qwq q4 = new qwq();
        System.out.println("已生成对象个数为:" + qwq.getNumber());
    }
}

运行结果为:4.

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

标签:ati   静态   []   static   turn   个数   pre   style   创建   

原文地址:https://www.cnblogs.com/jmdd/p/9827394.html

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