In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "what is the limited scope of finally sentence blocks". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "what is the limited scope of finally sentence blocks".
Does the finally statement block have to be executed?
The answer is not necessarily.
Returns directly to the block of finally statements that are not executed
Throwing exception is not executed to finally statement block
System exit not executed to finally statement block
...
There are many special cases that cause finally statement blocks not to be executed.
The code is as follows
Public static String test () {
String str = null
Int I = 0
If (I = = 0) {
Return str;// directly returns unexecuted to finally statement block
}
Try {
System.out.println ("try...")
Return str
} finally {
System.out.println ("finally...")
}
}
Public static String test2 () {
String str = null
Int I = 0
I = I / 0ram / throw exception not executed to finally statement block
Try {
System.out.println ("try...")
Return str
} finally {
System.out.println ("finally...")
}
}
Public static String test3 () {
String str = null
Try {
System.out.println ("try...")
System.exit (0); / / system exit not executed to finally statement block
Return str
} finally {
System.out.println ("finally...")
}
}
Thank you for your reading, the above is the content of "what is the limited scope of finally sentence blocks". After the study of this article, I believe you have a deeper understanding of what the limited scope of finally sentence blocks is, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.