+ 1

What do you mean by method - call in java ?

Explain in detai...

23rd Aug 2020, 1:46 AM
꧁•☬₣ℜøźєη•ᴵᴰ☬•꧂
꧁•☬₣ℜøźєη•ᴵᴰ☬•꧂ - avatar
2 Antworten
+ 6
★Alpha★♆ Pөѕєїԁөи ♆ When a program invokes a method, the program control gets transferred to the called method. This called method then returns control to the caller in two conditions, then the return statement is executed. 😄😄I hope this was helpful for u😄😄
23rd Aug 2020, 1:55 AM
Guddu❤
Guddu❤ - avatar
+ 3
A method is a set of code which is referred to by name and can be called (invoked) at any point in a program simply by utilizing the method's name. Think of a method as a subprogram that acts on data and often returns a value. Each method has its own name. When that name is encountered in a program, the execution of the program branches to the body of that method. When the method is finished, execution returns to the area of the program code from which it was called, and the program continues on to the next line of code.
23rd Aug 2020, 3:50 AM
Vishakha Shrivastav
Vishakha Shrivastav - avatar