21xrx.com
2024-11-08 20:20:12 Friday
登录
文章检索 我的文章 写文章
Java中的this指针详解——使用案例讲解
2023-06-19 16:35:50 深夜i     --     --
Java this指针 实例 构造函数 对象

this指针在Java中扮演着重要的角色。它提供了一个方式,使得对象可以引用自身。this一词意味着这个对象或者正在使用方法所属的对象。但是,很多开发者都不知道如何正确地使用this指针,因此在这里我们将介绍Java中的this指针的详细知识,并提供实例操作。

使用this表示当前对象:

public class Student {

  private String name;

  public Student(String name)

    this.name = name;//this关键字用于表示当前对象

}

在这个例子中,this关键字用于表示当前的Student对象。这可以节省将成员变量名称与构造函数中使用的参数名称命名为不同名称。

使用this调用构造函数:

public class Person {

  private String name;

  private int age;

  public Person() {

    this("John", 20);//this关键字用于调用Person另外一个构造函数

  }

  public Person(String name, int age)

    this.name = name;

    this.age = age;

}

在这个例子中,构造函数Person()调用了重载的构造函数Person(String name, int age),使用this关键字将对象的名字和年龄传递给该构造函数,从而避免了重复的代码。

使用this返回当前对象:

public class Student {

  private String name;

  public Student setName(String name)

    this.name = name;//this关键字用于返回当前对象

    return this;

}

在这个例子中,this关键字用于返回当前Student对象。因此,可以在链式调用中使用setName()方法。

本文的

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复