| Author |
Statement in Try statement, method that has two return values ?
|
WeiJie Lim
Ranch Hand
Joined: Sep 05, 2012
Posts: 68
|
|
System.out.println("11"); is causing error of "unreachable statement" because a method can only have one statement that returns something ? I want to correct my understanding on this.
In this case, there are two statements that return something, return sc.nextInt(); and System.out.println("11"); .
Thanks in advance.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
WeiJie Lim wrote:System.out.println("11"); is causing error of "unreachable statement" because a method can only have one statement that returns something ?
No. The System.out.println statement is after the return statement, so that it will never be executed. The compiler detects this and gives you an error.
WeiJie Lim wrote:In this case, there are two statements that return something, return sc.nextInt(); and System.out.println("11"); .
No. The System.out.println statement prints something on the console, but it is not a statement that returns a value from the method. Only with the "return" keyword you can return a value from a method.
Printing something on the console and returning a value from a method are two totally different things. Why do you think that a System.out.println method returns anything from a method?
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
WeiJie Lim
Ranch Hand
Joined: Sep 05, 2012
Posts: 68
|
|
Jesper de Jong wrote:
No. The System.out.println statement is after the return statement, so that it will never be executed. The compiler detects this and gives you an error.
No. The System.out.println statement prints something on the console, but it is not a statement that returns a value from the method. Only with the "return" keyword you can return a value from a method.
Printing something on the console and returning a value from a method are two totally different things. Why do you think that a System.out.println method returns anything from a method?
Oh noted, didn't know anything after the return statement is not executed =) . Thanks for this.
Oops, I guess my understanding of return statements is flawed. I assumed println prints out a value, so it is counted under returning a value .
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9939
|
|
'return sc.nextInt();' means "leave the method RIGHT NOW, and send back the value we get from sc.nextInt()".
There are some subtleties with try/catch/finally statements, but within a given block, return immediately leaves that block.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
As you will see here, a lot of people believe a return statement should be the last statement in the method and should appear nowhere else.
A lot of people disagree with that, but you can see how much confusion that multiple return has caused.
|
 |
 |
|
|
subject: Statement in Try statement, method that has two return values ?
|
|
|