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()); } }
结果:
原文地址:https://www.cnblogs.com/YXSZ/p/9824578.html
时间: 2024-11-13 06:56:53