0 votes
in JAVA by
What is method in java ?

It contains the executable body that can be applied to the specific object of the class.

Method includes method name, parameters or arguments and return type and a body of executable code.

Syntax : type methodName(Argument List){

}

ex : public float add(int a, int b, int c)

methods can have multiple arguments. Separate with commas when we have multiple arguments.

Related questions

0 votes
asked Jun 16, 2019 in JAVA by reins.robin
+2 votes
asked Jun 17, 2019 in JAVA by reins.robin
...