Today's visit to the forum found a very interesting question:
Who can give me an explanation of the result of this procedure is: 2. Instead of: 3
The code is as follows:Class Test {public int aaa () { int x = 1; try {
There is a return statement in the try and finally block where no exception is thrown in the 1:try block[Java]View PlainCopy
Public static int noexception () {
int i=10;
try{
System.out.println ("I in Try block is" +i);
return-I.;
}
1 GuideTry... Catch... Finally is probably a familiar statement, and it seems easy to understand logically. However, the lessons I personally learned tell me that this is not as simple and obedient as I imagined. Believe it? Let's take a look at the
Today's visit to the forum found a very interesting question:
Who can give me an explanation of the result of this procedure is: 2. Instead of: 3
The code is as follows:class Test {public int aaa() {int x = 1;try {return ++x;} catch
Today's visit to the forum found a very interesting question:
Who can give me an explanation of the result of this procedure is: 2. Instead of: 3
The code is as follows:class Test {public int aaa() {int x = 1;try {return ++x;} catch
Today's visit to the forum found a very interesting question:
Who can give me an explanation of the result of this procedure is: 2. Instead of: 3
The code is as follows:class Test {public int aaa() {int x = 1;try {return ++x;} catch
The contents of the finally block are executed before the return statement in the try, and if there is a return statement in the Finall statement block, it is returned directly from Finally, which is also the reason why the return in finally is not
Java basic interview question: there is a return statement in try {}, so will the code in finally {} following this try be executed? When will the code be executed, before or after return ?,
Package com. swift; public class Try_Catch_Finally_Test
Today's visit to the forum found a very interesting question:Who can give me an explanation of the result of this procedure is: 2. Instead of: 3?The code is as follows:ClassTest {PublicIntAAA () {int x = 1; try { return + +x;} Catch (Exception e) {}
Condition 1: If there is no exception in try and return in Try (execution order)tryfinallyreturnCondition 2: If there is an exception in the try and return in Trytry----catch---finallyreturnIn short, finally always execute!Condition 3: There is an
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.