创建线程及启动的几种方式
标签:callable row task ted exe 线程 oid class inter
创建线程及启动的几种方式
public class ThreadNew {
public static void main(String[] args) {
new MyThread1().start();
new Thread(new MyThread2()).start();
FutureTask futureTask = new FutureTask(new MyThread3());
new Thread(futureTask).start();
try {
Integer integer = futureTask.get();
System.out.println(integer);
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
}
}
//1.继承Thread类
class MyThread1 extends Thread{
@Override
public void run() {
System.out.println(Thread.currentThread().getName());
}
}
//2.实现Runnable接口
class MyThread2 implements Runnable{
@Override
public void run() {
System.out.println(Thread.currentThread().getName());
}
}
//3.实现Callable接口
class MyThread3 implements Callable{
@Override
public Integer call() throws Exception {
System.out.println(Thread.currentThread().getName());
return 100;
}
}
创建线程及启动的几种方式
标签:callable row task ted exe 线程 oid class inter
原文地址:https://www.cnblogs.com/xd-study/p/13196701.html
评论