從FindBugs中學Java【二】

來源:互聯網
上載者:User

標籤:

    IMSE_DONT_CATCH_IMSE

java.lang Class IllegalMonitorStateExceptionjava.lang.Object  java.lang.Throwable      java.lang.Exception          java.lang.RuntimeException              java.lang.IllegalMonitorStateExceptionAll Implemented Interfaces:Serializablepublic class IllegalMonitorStateExceptionextends RuntimeExceptionThrown to indicate that a thread has attempted to wait on an object‘s monitor or to notify other threads waiting on an object‘s monitor without owning the specified monitor.

 

這個問題大抵是因為給沒有鎖的對象使用了諸如notify(),wait()等方法,所以拋出java.lang.IllegalMonitorStateException。

給實際上加鎖的對象進行操作就可以了。

例如:

public class ThreadTest { public static void main(String[] args) {  new Thread(new ThreadDemo()).start(); }}class ThreadDemo implements Runnable { private int i = 0; public synchronized void run() {  try {   ThreadTest.class.wait();  } catch (InterruptedException e) {   e.printStackTrace();  }  System.out.println(Thread.currentThread().getName() + ":" + i); }}

 妥妥地

Exception in thread "Thread-0" java.lang.IllegalMonitorStateException at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:503) at com.github.alaahong.ThreadDemo.run(ThreadTest.java:14) at java.lang.Thread.run(Unknown Source)

 只需將其中的

ThreadTest.class.wait();

 改成

this.wait();

 即可。

Ref:1  2  3  4

 

 

 

 

從FindBugs中學Java【二】

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.