如何使用 Java 中的 this 关键字?
Java 中的 this 关键字主要用于引用当前类的实例变量。它还可以用于隐式调用方法或调用当前类的构造函数。
下面给出了一个展示 Java 中 this 关键字的程序
示例
class Student { private int rno; private String name; public Student(int rno, String name) { this.rno = rno; this.name = name; } public void display() { System.out.println("Roll Number: " + rno); System.out.println("Name: " + name); } } public class Demo { public static void main(String[] args) { Student s = new Student(105, "Peter Bones"); s.display(); } }
输出
Roll Number: 105 Name: Peter Bones
现在让我们了解一下上面的程序。
使用数据成员 rno、name 创建 Student 类。构造函数 Student() 使用 this 关键字初始化 rno 和 name,以区分局部变量和实例变量,因为它们具有相同的名称。成员函数 display() 显示 rno 和 name 的值。以下代码片段演示了这一点
class Student { private int rno; private String name; public Student(int rno, String name) { this.rno = rno; this.name = name; } public void display() { System.out.println("Roll Number: " + rno); System.out.println("Name: " + name); } }
在 main() 方法中,使用值 105 和 "Peter Bones" 创建类 Student 的一个对象 s。然后调用 display() 方法。以下代码片段演示了这一点
public class Demo { public static void main(String[] args) { Student s = new Student(105, "Peter Bones"); s.display(); } }
广告