Link to home
Start Free TrialLog in
Avatar of bt1942
bt1942

asked on

What's the return type !

Hi

Now that I know void doesn't return anything what about this code.

What's the return type in this code?
public boolean rentHouse(String address, double weeklyRent, House rentedHouse)

Open in new window

Avatar of Kevin Cross
Kevin Cross
Flag of United States of America image

Refer to this again: http://java.sun.com/docs/books/tutorial/java/javaOO/methods.html

You tell me what the return datatype is.  Since you understand void from last question, should be able to pick it out from above.
{not trying to be funny by the way, trying to ensure you learn the concept of where and what the return type is in a method signature so you will be able to recognize when someone changes method signature on you}
Avatar of bt1942
bt1942

ASKER

mwvisa1 // hi, is it boolean?
ASKER CERTIFIED SOLUTION
Avatar of Kevin Cross
Kevin Cross
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bt1942

ASKER

Thanks for the comment!
No problem.