第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

終止線程似乎不起作用

終止線程似乎不起作用

我的服務(wù)類(lèi)中有以下線程。public class MyLocalThread extends Thread {  @Override  public void run() {    while (!Thread.interrupted()) {      try {        //do some work         Thread.sleep(4000);      } catch (Exception e){          System.out.println("Exception occur" + e.getMessage());          e.printStackTrace();      }    }  }}當(dāng)我收到來(lái)自MainActivity.java. 我已經(jīng)建立了BroadcastReceiver服務(wù)和活動(dòng)之間的通信。我像下面這樣啟動(dòng)線程。線程開(kāi)始正常,我收到祝酒詞。public class MyReceiver extends BroadcastReceiver {    MyLocalThread thread = new MyLocalThread();  @Override  public void onReceive(Context context, Intent intent) {    String action = intent.getAction();    if (action.equals("com.example.START")) {      //starts the thread      thread.start();      Toast.makeText(context, "Service is started.", Toast.LENGTH_LONG).show();    } else if (action.equals("com.example.STOP")) {      //stops the thread    thread.interrupt();      Toast.makeText(context, "Service has stopped.", Toast.LENGTH_LONG).show();    }  }}但是當(dāng)試圖停止我的線程時(shí),iesecond action不起作用。我收到一個(gè) TOAST,表示服務(wù)已停止,但我的線程仍在繼續(xù)運(yùn)行。它不會(huì)終止。我不知道我做錯(cuò)了什么?
查看完整描述

2 回答

?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

編輯:


您可以調(diào)用thread.interrupt()中斷線程并進(jìn)行Thread.interrupted()檢查而不是創(chuàng)建布爾值。


class MyLocalThread extends Thread { 

    public void run() { 

      if(!Thread.interrupted()) {

        try {

        //do some work

       }

        catch (InterruptedException e) { 

            System.out.println("InterruptedException occur"); 

        } 

      }

    } 

}  

像這樣中斷線程:


MyLocalThread thread = new MyLocalThread(); 

        thread.start(); 

  // when need to stop the thread

        thread.interrupt(); 


查看完整回答
反對(duì) 回復(fù) 2023-03-23
?
皈依舞

TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超3個(gè)贊

此功能內(nèi)置于 Thread 中。查看 thread.interrupt 和 thread.isInterrupted。沒(méi)有理由重寫(xiě)此功能。



查看完整回答
反對(duì) 回復(fù) 2023-03-23
  • 2 回答
  • 0 關(guān)注
  • 143 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)