![]() |
Give me clear Idea about return statement
Dear All,
I am confusing little bit on return statements. Give me clarity about the return statements. Explain with Example. |
The return statement is used to return the value within the body of method. The method declared void does not return any value.
The method that is not declared void must contain a return statement with the corresponding return value.: class ReturnValue { public static void main (String[] args) { System.out.println("The Biggest Number is: "+GetBiggestNumber(10, 15, 20)); } public static int GetBiggestNumber (int num1, int num2, int num3) { int biggest = 0; if ((num1 > num2) && (num1 > num3)) biggest = num1; else if ((num2 > num3) && (num2 > num1)) biggest = num2; else biggest = num3; return biggest; } } Output will be displayed as: The Biggest Number is :20 :) |
In simple terms, if you call a method that returns a value(which looks like this)
Code:
public int number() This example says 'int' in the declaration, but you can change it to any primitive, or any object, including boolean, String, etc. If you would call that method, whatever is returned (in this case x = 5, which is 5) is replaced by the call to the method. Code:
int y = number();Code:
int y = 5; |
| All times are GMT +1. The time now is 05:58 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.