A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

ruanjianxzh

黑马帝

  • 黑马币:0

  • 帖子:3

  • 精华:0

© ruanjianxzh 黑马帝   /  2011-10-17 11:36  /  1946 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class test{
  public static void main(String args[])throws Exception{
    thre th2=new thre();
    thre th3=new thre();
    th2.start();
    th3.start();
    th2.join();
    th3.join();
    thre th=new thre();
    System.out.println(th.n);
  }
}
class thre extends Thread{
  public static int n=0;
  public void run(){
    for(int i=0;i<=100;i++){
      n++;
    }
  }
}
重新创建一个线程,为什么他的成员变量的值发生改变,一开始初始化的的值为0!

评分

参与人数 1技术分 +1 收起 理由
宁超 + 1 赞一个!

查看全部评分

1 个回复

倒序浏览
宁超 黑马帝 2011-10-17 15:22:28
沙发
因为你的n被static修饰了,静态变量修饰的变量值被所有该类的对象所共享。所以你的n在2个线程执行完,再被没调用线程的对象输出新的值是th2.start(), th3.start()执行次数n的和了。
如果你把static取了,再输出的话就是0了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马