Java多线程初学者指南(3):利用Runnable接口建设线程
实现Runnable接口的类必需利用Thread类的实例才气建设线程。通过Runnable接口建设线程分为两步:
1.将实现Runnable接口的类实例化。
2.成立一个Thread工具,并将第一步实例化后的工具作为参数传入Thread类的结构要领。
最后通过Thread类的start要领成立线程。
下面的代码演示了如何利用Runnable接口来建设线程:
package mythread;
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