阅读量:2
在Java中,创建一个新线程有两种主要方法:
- 继承Thread类
- 实现Runnable接口
下面是两种方法的示例:
方法1:继承Thread类
class MyThread extends Thread {
public void run() {
// 在这里编写你的代码
System.out.println("线程正在运行...");
}
}
public class Main {
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start(); // 启动新线程
}
}
方法2:实现Runnable接口
class MyRunnable implements Runnable {
public void run() {
// 在这里编写你的代码
System.out.println("线程正在运行...");
}
}
public class Main {
public static void main(String[] args) {
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable); // 创建新线程
thread.start(); // 启动新线程
}
}
这两种方法都可以创建一个新线程并启动它。你可以根据自己的需求选择合适的方法。
以上就是关于“java 新建线程如何用”的相关介绍,筋斗云是国内较早的云主机应用的服务商,拥有10余年行业经验,提供丰富的云服务器、租用服务器等相关产品服务。云服务器资源弹性伸缩,主机vCPU、内存性能强悍、超高I/O速度、故障秒级恢复;电子化备案,提交快速,专业团队7×24小时服务支持!
简单好用、高性价比云服务器租用链接:https://www.jindouyun.cn/product/cvm