what is mean by method signature?
Answers were Sorted based on User's Feedback
Answer / priya
speicfying access modifier, method name,
arguments are called method signature only
if the return type differnent then also both are called as
same signatured if am not mistaken
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / yogesh gandhi
Yes priya, you are right
Return type is not a part of the method signature.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vijayakumar chinnasamy
Method signature means name of the method ,type of argument
and order of arguments.
The "return type" of method and "access specifier" are not
part of method signature.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / umesh
It means no. of arguments, type of argument ,order of data
type.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / shreya
The only required elements of a method declaration are the
method's return type, name, a pair of parentheses, (), and
a body between braces, {}.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shreshta
Method signature: void name();
declaring method but not declaring the body of method
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / geetha
speicfying access modifier, return type, method name,
arguments are called method signature
eg:
public void add(int a,int b)---method signature of the
method
public void add(int a,int b)
{
return (a+b);
}
correct me if i am wrong.
| Is This Answer Correct ? | 4 Yes | 5 No |
In which order the iterator iterates over collection?
What is Java Reflection API? Why it’s so important to have?
What is a string what operation can be performed out with the help of a string?
Can an abstract class have a constructor?
Can java hashmap have duplicate keys?
What is split return?
solve (x-1)(x-9)=8;
3 Answers IBM, Manhattan, TCS,
What is UNICODE?
How can we run a java program without making any object?
Is java still relevant?
What is module with example?
What are 4 pillers of object orinted programming?