| Author |
return
|
Victor Lu
Greenhorn
Joined: Jun 30, 2011
Posts: 6
|
|
What does
by itself do, when there is no return value specified? Thanks!
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56207
|
|
|
What are your thoughts on the matter?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
ashwin bhawsar
Ranch Hand
Joined: Mar 16, 2011
Posts: 62
|
|
i think only 'return' without any values means it does not returns anything.
You can try out this piece of code:
|
 |
Ogeh Ikem
Ranch Hand
Joined: May 13, 2002
Posts: 180
|
|
|
return means return to the calling method. If your method is a not a void method, it must return some data to the calling method.
|
 |
 |
|
|
subject: return
|
|
|