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

线程--继承Thread

时间:2018-03-02 01:13:35      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   不同   div   重写   class   body   str   system   main   

首先继承Thread类,然后重写Thread类的run()方法。

Thread类的子类的对象调用start()方法,然后虚拟机就会调用该线程的run()方法。

当程序执行到start()方法时,线程启动,此时有两条执行路径,一条是主方法执行main方法,另一条是线程路径执行线程run()里的代码,两条路径交替执行(交替执行指抢夺cup执行时间,所以每次执行结果都不同)

class ThreadDemo extends Thread
{
    public void run()//存储线程要执行的代码
    {  
         for(int i = 0; i < 60; i++)
         {
               System.out.println("线程 " + i);
         }
    }   
}



class ThreadTest
{
    public static void main(String[] args)
    {
          ThreadDemo thread = new ThreadDemo();
          thread.start();//线程启动,并执行该线程的run()方法,main路径和线程交替执行
         
          for(int i = 0; i < 60; i++)
         {
               System.out.println("mian " + i);
         }
    }
}

线程--继承Thread

标签:style   不同   div   重写   class   body   str   system   main   

原文地址:https://www.cnblogs.com/gczmn/p/8490792.html

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