Java如何寫(xiě)多線(xiàn)程
提問(wèn)人:榮凡88發(fā)布時(shí)間:2020-10-13
1.分別定義不同的線(xiàn)程類(lèi),在各自的run方法中定義線(xiàn)程的工作
class mythread1 extends Thread
{ public void run{….} }
class mythread2 extends Thread
{ public void run{….} }
2. 在主類(lèi)中實(shí)例化各線(xiàn)程類(lèi),并啟動(dòng)線(xiàn)程.
public class demo extends Applet
{ public void init()
{ mythread t1=new mythread1();
mythread t2=new mythread2();
t1.start(); t2.start();} }
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>