java this关键字

Posted DQ_CODING

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java this关键字相关的知识,希望对你有一定的参考价值。

概念


this调用构造器

案例

package lesson.l11_oop2;

/**
 * Illustration
 *
 * @author DengQing
 * @version 1.0
 * @datetime 2022/7/3 17:11
 * @function
 */
public class Girl 
    private String name;
    private Integer age;

    public Girl() 

    

    public Girl(String name, Integer age) 
        this.name = name;
        this.age = age;
    

    public String getName() 
        return name;
    

    public void setName(String name) 
        this.name = name;
    

    public Integer getAge() 
        return age;
    

    public void setAge(Integer age) 
        this.age = age;
    

    public void marry(Boy boy) 
        System.out.println("marry" + boy.getName());
        boy.marry(this);
    

    public int compare(Girl girl) 
        System.out.println("compare" + girl.getName());
       /* if (this.getAge() > girl.getAge()) 
            return 1;
         else if (this.getAge().equals(girl.getAge())) 
            return 0;
         else 
            return -1;
        */
        return this.getAge()- girl.getAge();
    


以上是关于java this关键字的主要内容,如果未能解决你的问题,请参考以下文章

Java复习笔记--java中this 关键字

Java——this关键字

Java - 何时使用'this'关键字[重复]

如何理解 JavaScript 中的 this 关键字

Java——this关键字

java基础面向对象之this关键字