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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 吴华二 中级黑马   /  2012-3-26 15:32  /  1722 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class TestHello implements Runnable {
        private int num=10;
        public void run(){
           for(int i=0;i<50;i++){
                if (num >0)
                  Thread.sleep(1000);
                  System.out.println(num--);
               }
                }        
               
    public static void main(String[] args) {
        
              TestHello t=new TestHello();
          Thread h =new Thread(t);
          Thread e=new Thread(t);
          h.start();
          e.start();
      }
               
}
帮我看下这个代码哪里出错了呢?看了好久也没打到错误...

4 个回复

倒序浏览
   Thread.sleep(1000);    捕捉异常试试
回复 使用道具 举报
你的括号是中文的,还有就是加try/catch语句
public class TestHello implements Runnable {
    private int num=10;
    public void run(){
       for(int i=0;i<50;i++){
            if (num >0)                                try {
                                        Thread.sleep(1000);
                                } catch (InterruptedException e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                }
              System.out.println(num--);
           }
            }        
            
public static void main(String[] args) {
   
          TestHello t=new TestHello();
      Thread h =new Thread(t);
      Thread e=new Thread(t);
      h.start();
      e.start();
  }
            
}
回复 使用道具 举报
/*修饰了run()方法和增加一个变量obj*/
Object obj = new Object();       
public void run()
        {
                for(int i=0; i<50;i++)
                {
                        if(num>0)
                        {
                                synchronized(obj)
                                {
                                        if(num>0)
                                                {
                                                        try
                                                {
                                                        Thread.sleep(100);

                                                }
                                                catch (Exception e)
                                                {
                                                        System.out.println("error");
                                                }
                                                finally
                                                {
                                                       
                                                        System.out.println(Thread.currentThread().getName()+"::"+num--);
                                                }
                                        }                                       
                                }
                        }
                }
        }
回复 使用道具 举报

public class TestHello implements Runnable {
        private int num=10;
        public void run(){
           for(int i=0;i<50;i++){
                if(num>0)
                //if (num >0)  括号是全角的 ,改成半角的就OK了
                  //Thread.sleep(1000); 这里需要进行异常处理
                  try{Thread.sleep(1000);} catch(Exception e){}
                  System.out.println(num--);
               }
                }        
               
    public static void main(String[] args) {
        
              TestHello t=new TestHello();
          Thread h =new Thread(t);
          Thread e=new Thread(t);
          h.start();
          e.start();
      }
               
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马