`
JMaCan
  • 浏览: 14453 次
  • 性别: Icon_minigender_1
  • 来自: 大连
文章分类
社区版块
存档分类
最新评论

使用Runnable接口创建线程

阅读更多

实现Runnable接口的类的实例必须使用Thread类的实例才能创建线程,即通过Runnable接口创建线程分为三步:

1. 将实现Runnable接口的类实例化。

2. 建立一个Thread对象,并将第1步实例化后的对象作为参数传入Thread类的构造方法。

3. 通过Thread类的start方法建立线程。

 

代码:


public class MyRunnable implements Runnable{
 public void run(){
  System.out.println(Thread.currentThread().getName());
 }
 
 public static void main(String args[]){
   MyRunnable t1 = new MyRunnable();
   MyRunnable t2 = new MyRunnable();
   Thread thread1 = new Thread(t1, "MyThread1");
   Thread thread2 = new Thread(t2);
   thread2.setName("MyThread2");
   thread1.start();
   thread2.start();
 }
}

运行结果:

 

MyThread1
MyThread2

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics