码迷,mamicode.com
首页 > 编程语言 > 详细

a simple example of thread and runnable in java

时间:2017-08-12 15:29:38      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:ide   width   exception   use   sleep   sys   setname   tac   lock   

package com.user;

public class Thread_Thread {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        MyThread m_t=new MyThread();
        m_t.setName("thread");
        m_t.start();
        
        
        MyRunnable myRunnable=new MyRunnable();
        Thread m_r=new Thread(myRunnable);
        m_r.setName("runnable");
        m_r.start();
        
        System.out.println("Thread and runner");
        
    }
    
    
static class MyThread extends Thread{

    @Override
    public void run() {
        // TODO Auto-generated method stub
//        super.run();
        
        
        System.out.println(Thread.currentThread().getName()+" begins------");
        int i = 1;
        while(i<7){
            i++;
                if(i%3==0){
                    
                    
                    System.out.println(Thread.currentThread().getName()+" is working!!!");
                    
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    
                    
}


        }
        
        
        
        System.out.println(Thread.currentThread().getName()+" ends======");
        
        
        
        
    }
    
    
    
    
    
}
    
static class MyRunnable implements Runnable{

    @Override
    public void run() {
        // TODO Auto-generated method stub
        
        
        System.out.println(Thread.currentThread().getName()+" begins------");
        
        
        
        System.out.println(Thread.currentThread().getName()+" ends======");
        
        
        
    }
    
    
    
}    
    
}

 

 

 

 

 

 

run the java program:

技术分享

 

a simple example of thread and runnable in java

标签:ide   width   exception   use   sleep   sys   setname   tac   lock   

原文地址:http://www.cnblogs.com/wuxibo/p/7350250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!