当前位置: 代码迷 >> J2SE >> 一个小程序,帮小弟我讲讲吧~
  详细解决方案

一个小程序,帮小弟我讲讲吧~

热度:251   发布时间:2016-04-24 17:00:30.0
一个小程序,帮我讲讲吧~~~
class   Person   {
private   int   id;
public   static   int   total   =   0;
public   Person()   {
  total++;
  id   =   total;
}
}
class   OtherClass   {
public   static   void   main(String   args[])   {
Person.total   =   100;
System.out.println(Person.total);
Person   c   =   new   Person();
System.out.println(Person.total);
}
}


结果为什么先是100   后是101呢~~看不懂

------解决方案--------------------
上面说得很清楚了,学习。
  相关解决方案