This might be a really stupid question but what happens to data that is returned from a method? For example, if I have a method that adds two numbers and I tell it to return the sum, how would I access that information from the place where the method was called?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
In most languages, you access the result of a function by putting the function call on the right hand side of an assignment expression. For example, in Python, you can assign the result of calling the built-in
|
|||
|
|
|
Assuming your question is related with java. You could assign the whole method to a new variable.
What is actually happening, is that the method signature sum(value1,value2) holds the result of the 2 numbers summation. There is also another way of writing the code inside the method but the result will be the same. For example:
P.S. You could try to use the above samples directly. They will compile and run. |
||||
|
|