I defined an interface:
public Interface A
{
foo(String criteria)
}
Can I rename the parameter name in the implementing class?
final public B implements A
{
foo(String name)
}
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You definitely can rename the variable name, it is not a part of the signature.
The signature of a method includes its return type, the method name, and the type and order of its parameters.