Can I use same name for public variable and method argument in java?

后端 未结 3 526
耶瑟儿~
耶瑟儿~ 2020-12-22 10:01

So, can I use same name for public variable in a class and method argument in java? for example(\"number\" is declared twice):

public class Class1 {
    publ         


        
3条回答
  •  甜味超标
    2020-12-22 10:40

    Yes, if anyhow you have scope related problem then you can qualify the member using the reference this

    public static String function1(String id, int number)
    {
        this.number = number; 
        //here you assign the class member with the value of the parameter
    }
    

提交回复
热议问题