मैंने यह कोशिश की, यह सिंगल थ्रेडेड है।
public static void main(String args[]) throws Exception {
Object obj = new Object();
try {
synchronized (obj) {
obj.wait();
System.out.println("after wait()");
}
} catch (Exception ignored) {
} finally {
System.out.println("finally");
}
}
main
Thread
पर होगा wait
राज्य हमेशा के लिए इसलिए, finally
कहा जा कभी नहीं होगा ,
इसलिए कंसोल आउटपुट नहीं होगा print
String
: के बाद wait()
याfinally
@Stephen C के साथ सहमत, उपरोक्त उदाहरण यहाँ वर्णित 3 केस में से एक है :
निम्नलिखित कोड में कुछ और अनंत लूप संभावनाओं को जोड़ना:
// import java.util.concurrent.Semaphore;
public static void main(String[] args) {
try {
// Thread.sleep(Long.MAX_VALUE);
// Thread.currentThread().join();
// new Semaphore(0).acquire();
// while (true){}
System.out.println("after sleep join semaphore exit infinite while loop");
} catch (Exception ignored) {
} finally {
System.out.println("finally");
}
}
केस 2: यदि जेवीएम पहले दुर्घटनाग्रस्त हो जाता है
import sun.misc.Unsafe;
import java.lang.reflect.Field;
public static void main(String args[]) {
try {
unsafeMethod();
//Runtime.getRuntime().halt(123);
System.out.println("After Jvm Crash!");
} catch (Exception e) {
} finally {
System.out.println("finally");
}
}
private static void unsafeMethod() throws NoSuchFieldException, IllegalAccessException {
Field f = Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
Unsafe unsafe = (Unsafe) f.get(null);
unsafe.putAddress(0, 0);
}
रेफरी: आप एक जेवीएम को कैसे दुर्घटनाग्रस्त करते हैं?
केस 6: यदि finally
ब्लॉक को डेमॉन द्वारा निष्पादित किया जा रहा है Thread
और अन्य सभी गैर-डेमन Threads
निकास finally
को बुलाया जाता है।
public static void main(String args[]) {
Runnable runnable = new Runnable() {
@Override
public void run() {
try {
printThreads("Daemon Thread printing");
// just to ensure this thread will live longer than main thread
Thread.sleep(10000);
} catch (Exception e) {
} finally {
System.out.println("finally");
}
}
};
Thread daemonThread = new Thread(runnable);
daemonThread.setDaemon(Boolean.TRUE);
daemonThread.setName("My Daemon Thread");
daemonThread.start();
printThreads("main Thread Printing");
}
private static synchronized void printThreads(String str) {
System.out.println(str);
int threadCount = 0;
Set<Thread> threadSet = Thread.getAllStackTraces().keySet();
for (Thread t : threadSet) {
if (t.getThreadGroup() == Thread.currentThread().getThreadGroup()) {
System.out.println("Thread :" + t + ":" + "state:" + t.getState());
++threadCount;
}
}
System.out.println("Thread count started by Main thread:" + threadCount);
System.out.println("-------------------------------------------------");
}
आउटपुट: यह "अंत में" प्रिंट नहीं करता है, जिसका अर्थ है "डेमॉन थ्रेड" में "अंत में ब्लॉक" निष्पादित नहीं किया गया था
main Thread Printing
Thread :Thread[My Daemon Thread,5,main]:state:BLOCKED
Thread :Thread[main,5,main]:state:RUNNABLE
Thread :Thread[Monitor Ctrl-Break,5,main]:state:RUNNABLE
Thread count started by Main thread:3
-------------------------------------------------
Daemon Thread printing
Thread :Thread[My Daemon Thread,5,main]:state:RUNNABLE
Thread :Thread[Monitor Ctrl-Break,5,main]:state:RUNNABLE
Thread count started by Main thread:2
-------------------------------------------------
Process finished with exit code 0
probably
इसके बजाय कीवर्ड का नाम होना चाहिए ।