这里的主函数怎么创建Thread的对象
这里的主函数怎么创建Thread的对象,比如Thread thread=new Thread(mt);
5
收起
正在回答 回答被采纳积分+1
2回答
吃吃吃鱼的猫
2019-06-11 19:09:21
同学你好,
创建线程的两种方式:
方式一:通过继承Thread类来创建并启动线程的步骤如下:
public class MyThread extends Thread{//继承Thread类 public void run(){ //重写run方法 } } public class Main { public static void main(String[] args){ new MyThread().start();//创建并启动线程 } }
方式二:
实现Runnable接口创建并启动线程步骤如下:
public class MyThread2 implements Runnable {//实现Runnable接口 public void run(){ //重写run方法 } } public class Main { public static void main(String[] args){ //创建并启动线程 MyThread2 myThread=new MyThread2(); Thread thread=new Thread(myThread); thread().start(); //或者new Thread(new MyThread2()).start(); } }
如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~
相似问题
登录后可查看更多问答,登录/注册
1. Java 零基础入门
- 参与学习 人
- 提交作业 3802 份
- 解答问题 11489 个
本阶段带你迈入Java世界,学习Java必备基础知识,基础语法、面向对象思想以及常用工具类的使用。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星