class JBT {
int variable = 5;
public static void main(String args[]) {
JBT obj = new JBT();
obj.method(20);
obj.method();
}
void method(int variable) {
variable = 10;
System.out.println("Value of Instance variable :" + this.variable);
System.out.println("Value of Local variable :" + variable);
}
void method() {
int variable = 40;
System.out.println("Value of Instance variable :" + this.variable);
System.out.println("Value of Local variable :" + variable);
}
}
参考:
http://188029.net/java/j12-03-03.html
关键字this
最新推荐文章于 2022-10-13 13:35:09 发布