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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 笑轻轻 中级黑马   /  2014-8-13 22:47  /  977 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


public class 线程问题 {

        /**
         * @param args
         */
        public static void main(String[] args) {
                // TODO Auto-generated method stub
                Thread t=new Thread(new xian3());
                t.start();
                try {
                        t.join();
                } catch (InterruptedException e) {
                       
                        System.out.println("方法线程中断");
                }
                for(int i=0;i<555;i++){
                       
                               
                        System.out.println("乐时间 ");
                }
        }
}
class xian3 implements Runnable{

        public void run(){
                for(int i=0;i<555;i++){
                        if(i==200)
                                try {
                                        this.wait();
                                } catch (InterruptedException e) {
                                        System.out.println("方法线程中断2");
                                }
                        System.out.println(i);
                }
               
        }
}//不知道为什么抛异常后怎么都不输出我写在catch里的代码呢。哪位大神可以说明一下谢谢!

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马