首页 新闻 会员 周边
0
回答数

已关闭问题 30 java中静态成员变量的初始化

有一个类 public class ClassVar { static int id =0; private int count = id++; } 然后执行main方法 public class M