码迷,mamicode.com
首页 > 编程语言 > 详细

java-this关键字

时间:2019-02-20 19:51:57      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:pre   调用   code   构造   hello   属性   关键字   col   ret   

  1.  (1)this调用本类中的属性,也就是类中的成员变量;
        this.name=name;
     (2)this调用本类中的其他方法;
     (3)this调用本类中的其他构造方法,调用时要放在构造方法的首行。
    public class Student { //定义一个类,类的名字为student。 
     public Student() { //定义一个方法,名字与类相同故为构造方法
         this(“Hello!”);
     }
     public Student(String name) { //定义一个带形式参数的构造方法
     }
    }
    
    

     

    4)返回实例本身
        return this;

     

java-this关键字

标签:pre   调用   code   构造   hello   属性   关键字   col   ret   

原文地址:https://www.cnblogs.com/jiangtao1218/p/10408598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!