您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“如何調(diào)用lockInterruptibly方法對(duì)線(xiàn)程interrupt方法做出響應(yīng)”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
/** * reentrantlock用于替代synchronized * 由于m1鎖定this,只有m1執(zhí)行完畢的時(shí)候,m2才能執(zhí)行 * 這里是復(fù)習(xí)synchronized最原始的語(yǔ)義 * * 使用reentrantlock可以完成同樣的功能 * 需要注意的是,必須要必須要必須要手動(dòng)釋放鎖(重要的事情說(shuō)三遍) * 使用syn鎖定的話(huà)如果遇到異常,jvm會(huì)自動(dòng)釋放鎖,但是lock必須手動(dòng)釋放鎖,因此經(jīng)常在finally中進(jìn)行鎖的釋放 * * 使用reentrantlock可以進(jìn)行“嘗試鎖定”tryLock,這樣無(wú)法鎖定,或者在指定時(shí)間內(nèi)無(wú)法鎖定,線(xiàn)程可以決定是否繼續(xù)等待 * * 使用ReentrantLock還可以調(diào)用lockInterruptibly方法,可以對(duì)線(xiàn)程interrupt方法做出響應(yīng), * 在一個(gè)線(xiàn)程等待鎖的過(guò)程中,可以被打斷 * * @author mashibing */
t1線(xiàn)程把這把鎖給占了。
public class ReentrantLock4 { public static void main(String[] args) { Lock lock = new ReentrantLock(); Thread t1 = new Thread(()->{ try { lock.lock(); System.out.println("t1 start"); TimeUnit.SECONDS.sleep(Integer.MAX_VALUE); System.out.println("t1 end"); } catch (InterruptedException e) { System.out.println("interrupted!"); } finally { lock.unlock(); } }); t1.start(); Thread t2 = new Thread(()->{ try { //lock.lock(); lock.lockInterruptibly(); //可以對(duì)interrupt()方法做出響應(yīng) System.out.println("t2 start"); TimeUnit.SECONDS.sleep(5); System.out.println("t2 end"); } catch (InterruptedException e) { System.out.println("interrupted!"); } finally { lock.unlock(); } }); t2.start(); try { TimeUnit.SECONDS.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } t2.interrupt(); //打斷線(xiàn)程2的等待 } }
“如何調(diào)用lockInterruptibly方法對(duì)線(xiàn)程interrupt方法做出響應(yīng)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(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)容。