多線程的代碼
/*
?* 繼承步驟套進(jìn)去就可以
?* 1.繼承Thread,重寫run方法
?* 2.創(chuàng)建對(duì)象調(diào)用start方法
?*/
public class StartThread02? extends Thread{
?? ?@Override
?? ??? ?public void run() {
?? ??? ??? ?for(int i=0;i<500;i++) {
?? ??? ??? ??? ?System.out.println("一邊睡覺(jué)");
?? ??? ??? ?}
?? ??? ?}
?? ?public static void main(String[] args) {
?? ??? ?StartThread02 st=new StartThread02();
//?? ??? ?st.start();? //調(diào)用cpu,通知執(zhí)行給線程
?? ??? ?st.run();//這就是單線程了,執(zhí)行完成run方法才可以執(zhí)行下面的for循環(huán)
?? ??? ?for(int i=0;i<20;i++) {
?? ??? ??? ?System.out.println("一遍聽(tīng)歌");
?? ??? ?}
?? ?}
}
標(biāo)簽: