JAVA-this 关键字
Posted Doris9301
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA-this 关键字相关的知识,希望对你有一定的参考价值。
this 关键字代表当前对象:
- this.属性 ---操作当前对象的属性;
- this.方法 ---调用当前对象的方法;
封装对象的属性时,经常会使用this关键字;
eg:
package imooc;
public class Telephone{
private float screen;
private float cpu;
private float mem;
public float getScreen(){
return screen;
}
public void setScreen(float screen){
this.screen=screen;
}
}
以上是关于JAVA-this 关键字的主要内容,如果未能解决你的问题,请参考以下文章