Java—this关键字

Posted 2chun

tags:

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

this:表示本类的属性

public class PhoneClass {

    //属性
    private String model;
    private int price;
    //定义一个构造函数-无参
    public PhoneClass(){
        System.out.println("无参构造函数");
    }
    //定义一个有参构造函数-有参
    public PhoneClass(String model,int prices){
        //本类的属性
        this.model=model;
        //对价格做控制
        if(prices < 1000){
            System.out.println("价格设置不合理");
        }else {
            //价格合理才会去做设置
            //访问本类的属性
            this.price = price;
        }
    }
}

 

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

java 类方法代码块修饰式关键字总结

Java this关键字

如何理解 JavaScript 中的 this 关键字

很实用的JQuery代码片段(转)

JAVA中的this关键字

java之this,super和代码块精选