欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java 线程

程序员文章站 2022-05-04 17:18:18
...
public class Java_1
{
   public  static  void main (String args[])
   {
      new SimpleThread("第1").start();
      new SimpleThread("第2").start();
   }
} 

class SimpleThread extends Thread
{
   public SimpleThread(String str)
   {
      super(str);
   }
   public void run()
   {
      for (int i = 0; i < 5; i++)
      {
         System.out.println(i + " " + getName());
         try
         {
            sleep((int)(2 * 100));
         }
         catch (InterruptedException e) { }
      }
      System.out.println("运行 " + getName());
   }
}

运行结果如下

Java 线程

运用到的知识:

extends :继承。
Thread:线程父类,通过继承Thread是实现线程的方法之一。
start();:启动线程。
sleep():让线程进入指定时间的休眠。
InterruptedException:阻塞和中断时会抛出异常,由InterruptedException处理。