标题:线程
取消只看楼主
xiaoyaoyouzi
Rank: 2
等 级:论坛游民
帖 子:13
专家分:20
注 册:2011-10-24
结帖率:100%
已结贴  问题点数:5 回复次数:0 
线程
public class RunnableTicket {
    public static void main(String args[]){
        MyThread m1 =new MyThread();
        MyThread m2 =new MyThread();
        MyThread m3 =new MyThread();
        new Thread(m1).start();
        new Thread(m2).start();
        new Thread(m3).start();
    }
}
与public class RunnableTicket {
    public static void main(String args[]){
        MyThread m =new MyThread();
        new Thread(m).start();
        new Thread(m).start();
        new Thread(m).start();
    }
}
两种线程实现为什么第一种资源不共享,而第二种资源共享?谁能给我解释一下吗?非常感谢

搜索更多相关主题的帖子: void public start 
2012-11-21 10:38



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-387769-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.793400 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved