提问人:iNeedHelpPls 提问时间:10/6/2022 更新时间:10/6/2022 访问量:68
如何访问方法参数的变量?
How do I access the variables of the method argument?
答:
0赞
Brandon
10/6/2022
#1
“this”关键字用于包含该方法的对象,因此,如果引用方法外部的内容,则使用 this.variable,而在引用传递给该方法的参数时不会使用它。Java 中 “this” 关键字的更好解释可以在这里找到: https://www.w3schools.com/java/ref_keyword_this.asp
0赞
malene.dev
10/6/2022
#2
如果公共变量和方法参数具有相同的名称,请使用this
公共变量 - this.yourVariable
method 参数 -yourVariable
评论