java 创建线程的几种方式
程序员文章站
2024-03-06 15:04:08
说道线程,肯定会想到使用 java.lang.thread.java这个类
那么创建线程也主要有2种方式
第一种方式:
public class mythre...
说道线程,肯定会想到使用 java.lang.thread.java这个类
那么创建线程也主要有2种方式
第一种方式:
public class mythread extends thread { public void run() { system.out.println("这是mythread线程"); } }
然后在调用处,执行start方法即可:
mythread mythread = new mythread(); mythread.start();
第二种方式实现runnable接口:
public class myrunnable implements runnable { public void run() { system.out.println("这是mythread线程"); } }
同样在执行的地方直接生命这个myrunnable,再直接丢进线程start即可:
myrunnable runbary = new myrunnable(); thread thread = new thread(runbary); thread.start();
这两种方式都可以用匿名类的方式来实现,但是我并不推荐;
另外使用thread本身来实现线程还是用runnable来做,我推荐后者,因为相对来说会比较方便,直接往线程中一扔即可,如果使用spring的线程执行器也是同样的道理,往执行器中丢入这个runnable即可
需要注意的是,执行线程的时候可以使用start()方法或者run()方法,虽然使用run会达到同样的效果,但是run是在主线程中使用的,也就是使用你当前的方法内线程,而不是另起一个线程,这样就达不到异步的效果,所以务必使用start()
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: 深入理解java long 存储时间戳
下一篇: 总结Android中MD风格相关控件