java类中访问属性
Posted FireC@t @ Perl6
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java类中访问属性相关的知识,希望对你有一定的参考价值。
package first;
public class for_protect {
private int age=10;
int number = 100;
public void show(){
System.out.println(number);
System.out.println(this.number=1000);
System.out.println(this.number);
//private的变量用this
//static变量用类名.变量
//public 直接个示或this.number
}
public static void main(String args[]){
for_protect test = new for_protect();
test.show();
}
}
以上是关于java类中访问属性的主要内容,如果未能解决你的问题,请参考以下文章