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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 梦里听传说 中级黑马   /  2014-10-8 12:09  /  955 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/**
*
*声明一个共享数组,起两个线程,
*两个线程每隔一段时间(可以是以个随机数),给数组中添加元素,每一条线程为数组添加3个数据即可。
* @author Administrator
*
*/
public class ceshi {
        private static List<String> num= new ArrayList<String>();
        public static void main(String[] args) {
                Executors.newCachedThreadPool().execute(new Runnable(){
                        public void run() {
                                for(int x=0;x<3;x++)
                                {
                                        num.add("x="+x);
                                }
                        }});
                Executors.newCachedThreadPool().execute(new Runnable(){
                        public void run() {
                                for(int y=0;y<3;y++)
                                {
                                        num.add("y="+y);
                                }
                        }});
                System.out.println(num);
        }
       

}

1 个回复

倒序浏览
不合要求了,你运行一下就知道,两个线程不是有序的打印的,建议你使用加入wait() nitify()方法
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马