91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

實例分析Java單線程與多線程

發布時間:2020-10-10 18:46:02 來源:腳本之家 閱讀:337 作者:彬菌 欄目:編程語言

線程:每一個任務稱為一個線程,線程不能獨立的存在,它必須是進程的一部分

單線程:般常見的Java應用程序都是單線程的,比如運行helloworld的程序時,會啟動jvm進程,然后運行main方法產生線程,main方法也被稱為主線程。

多線程:同時運行一個以上線程的程序稱為多線程程序,多線程能滿足程序員編寫高效率的程序來達到充分利用 CPU 的目的。

單線程代碼例子:

public class SingleThread {
	public static void main(String[] args){
		Thread thread = Thread.currentThread(); //獲取當前運行的線程對象
		thread.setName("單線程"); //線程重命名
		System.out.println(thread.getName()+"正在運行");
		for(int i=0;i<10;i++){
			System.out.println("線程正在休眠:"+i);
			try {
				thread.sleep(1000); //線程休眠,延遲一秒
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
				System.out.println("線程出錯");
			}
		}
	}
}

多線程代碼例子:

注意:多線程有兩種實現方式,一種是繼承Thread類,另一種是實現Runnable接口。

繼承Thread類實現多線程

public class TestThread {
	public static void main(String[] args){
		 Thread t1 = new ExtendThread("t1",1000); //使用上轉對象創建線程,并構造線程名字和線程休眠時間
		 Thread t2 = new ExtendThread("t2",2000); 
		 Thread t3 = new ExtendThread("t3",3000); 
		 t1.start(); //啟動線程并調用run方法
		 t2.start();
		 t3.start();
	}
}
class ExtendThread extends Thread{ //繼承Thread的類
	String name;
	int time;
	public ExtendThread(String name, int time) { //構造線程名字和休眠時間
		this.name=name;
		this.time=time;
	}	
	public void run(){ //重寫Thread類的run方法
		try{
			sleep(time); //所有線程加入休眠
		}
		catch(InterruptedExceptione){
			e.printStackTrace();
			System.out.println("線程中斷異常");
		}
		System.out.println("名稱為:"+name+",線程休眠:"+time+"毫秒"); 
	}
}

實現Runnable接口的多線程

public class RunnableThread {
	public static void main(String[] args){
		Runnable r1=new ImplRunnable("r1",1000); //Runnable接口必須依托Thread類才能創建線程
		Thread t1=new Thread(r1); //Runnable并不能調用start()方法,因為不是線程,所以要用Thread類加入線程
		Runnable r2=new ImplRunnable("r2",2000);
		Thread t2=new Thread(r2);
		Runnable r3=new ImplRunnable("r3",3000);
		Thread t3=new Thread(r3);
		
		t1.start(); //啟動線程并調用run方法
		t2.start();
		t3.start();
	}
}
class ImplRunnable implements Runnable{ //繼承Runnable接口的類
	String name;
	int time;	
	public ImplRunnable(String name, int time) { //構造線程名字和休眠時間
		this.name = name;
		this.time = time;
	}

	@Override
	public void run() { //實現Runnable的run方法
		try{
			Thread.sleep(time); //所有線程加入休眠
		}
		catch(InterruptedException e){
			e.printStackTrace();
			System.out.println("線程中斷異常");
		}
		System.out.println("名稱為:"+name+",線程休眠:"+time+"毫秒");
	}
}

說明:Thread類實際上也是實現了Runnable接口的類。

實現Runnable接口比繼承Thread類所具有的優勢

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜宁县| 芜湖县| 岑溪市| 界首市| 江达县| 舒城县| 黄山市| 蒙阴县| 南溪县| 九龙坡区| 类乌齐县| 拉孜县| 五华县| 桃江县| 太谷县| 缙云县| 怀仁县| 包头市| 石林| 祥云县| 开原市| 浙江省| 会宁县| 六安市| 扶绥县| 鄂伦春自治旗| 台中县| 涪陵区| 合阳县| 祁门县| 宁都县| 正宁县| 秦皇岛市| 抚州市| 舞阳县| 桐梓县| 皮山县| 墨江| 马公市| 晋中市| 东台市|