JAVA笔记-Day6
this关键字
在JAVA基础中,this关键字是一个最重要的概念。使用this关键字可以完成以下的操作:
- 调用类中的属性
- 调用类中的方法或构造方法
- 表示当前对象
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
package D06;
public class D06 { public static void main(String args[]) { Cat cat = new Cat(); cat.setName("喵喵"); cat.setAge(3); cat.eat(); } }
class Cat{ private String name; private int age; public void setName(String name) { this.name = name; } public String getName() { return name; } public void setAge(int age) { this.age = age; } public int getAge() { return age; } public void eat() { System.out.println("我是"+this.getName()+",我现在"+this.getAge()+"岁,我爱吃鱼"); } }
|