溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python爬蟲取消或終止線程的方法

發(fā)布時(shí)間:2020-11-11 09:25:06 來(lái)源:億速云 閱讀:237 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹python爬蟲取消或終止線程的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

三種線上方法

使用退出標(biāo)志,使線程正常退出,也就是當(dāng) run() 方法完成后線程終止;

使用 stop() 方法強(qiáng)行終止線程,但是不推薦使用這個(gè)方法,因?yàn)槭褂么朔椒ú话踩壳霸摲椒ㄒ驯粭売茫?/span>

使用 interrupt()方法中斷線程。

使用標(biāo)志位終止線程

使用標(biāo)志位終止線程就是定義一個(gè)boolean型的標(biāo)志位 ,在線程的run方法中根據(jù)這個(gè)標(biāo)志位是為true還是為false來(lái)判斷是否終止,這種情況多用于while循環(huán)中。

代碼如下:

class StopThread extends Thread {
 
//標(biāo)志位
 
private boolean flag = true;
 
@Override
 
public synchronized void run() {
 
while (flag) {
 
System.out.println(Thread.currentThread().getName()+"---我是子線程");
 
}
 
}
 
/**
 
* @methodDesc: 功能描述:(終止線程)
 
*/
 
public void stopThread() {
 
flag = false;
 
System.out.println(getName()+"線程被終止掉了");
 
}
 
}
 
/**
 
@classDesc: 功能描述:(演示終止線程效果)
 
*/
 
public class StopThreadDemo {
 
public static void main(String[] args) {
 
StopThread stopThread1 = new StopThread();
 
StopThread stopThread2 = new StopThread();
 
stopThread1.start();
 
stopThread2.start();
 
for (int i = 0; i < 50; i++) {
 
System.out.println("------我是主線程-----"+i);
 
if(i==30) {
 
stopThread1.stopThread();
 
stopThread2.stopThread();
 
}
 
}
 
}
 
}

使用 stop() 終止線程(不安全)

棄用stop()方法的原因:

調(diào)用 stop() 方法會(huì)立刻停止 run() 方法中剩余的全部任務(wù),包括在 catch 或 finally 語(yǔ)句中的,并拋出ThreadDeath異常,因此可能會(huì)導(dǎo)致任務(wù)執(zhí)行失敗。

使用interrupt方法中斷線程

使用 interrupt() 方法中斷線程時(shí)并不會(huì)立即終止線程,而是通知目標(biāo)線程,告訴它有人希望你終止。至于目標(biāo)線程收到通知后會(huì)如何處理,則完全由目標(biāo)線程自行決定。

以上是python爬蟲取消或終止線程的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI