阅读量:2
在Java中,新建线程有多种方法。以下是一些常见的方法:
- 继承Thread类:
class MyThread extends Thread {
public void run() {
// 线程执行的代码
}
}
public class Main {
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start(); // 启动线程
}
}
- 实现Runnable接口:
class MyRunnable implements Runnable {
public void run() {
// 线程执行的代码
}
}
public class Main {
public static void main(String[] args) {
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable); // 创建线程
thread.start(); // 启动线程
}
}
- 使用Callable接口和Future:
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
class MyCallable implements Callable {
public String call() throws Exception {
// 线程执行的代码,返回值类型为String
return "Hello, World!";
}
}
public class Main {
public static void main(String[] args) throws InterruptedException, ExecutionException {
ExecutorService executorService = Executors.newSingleThreadExecutor();
MyCallable myCallable = new MyCallable();
Future future = executorService.submit(myCallable); // 提交任务
String result = future.get(); // 获取任务结果
System.out.println(result); // 输出结果
executorService.shutdown(); // 关闭线程池
}
}
- 使用Java 8的CompletableFuture:
import java.util.concurrent.CompletableFuture;
class MyCompletableFuture {
public static CompletableFuture helloWorld() {
return CompletableFuture.supplyAsync(() -> {
// 线程执行的代码,返回值类型为String
return "Hello, World!";
});
}
}
public class Main {
public static void main(String[] args) {
MyCompletableFuture.helloWorld().thenAccept(result -> {
System.out.println(result); // 输出结果
});
}
}
这些方法都可以用于在Java中创建和启动线程。你可以根据自己的需求和场景选择合适的方法。
以上就是关于“java 新建线程有哪些常见方法”的相关介绍,筋斗云是国内较早的云主机应用的服务商,拥有10余年行业经验,提供丰富的云服务器、租用服务器等相关产品服务。云服务器资源弹性伸缩,主机vCPU、内存性能强悍、超高I/O速度、故障秒级恢复;电子化备案,提交快速,专业团队7×24小时服务支持!
简单好用、高性价比云服务器租用链接:https://www.jindouyun.cn/product/cvm