码迷,mamicode.com
首页 > 其他好文 > 详细

当前对象this

时间:2018-12-30 22:11:59      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:覆盖   col   span   不能   public   局部变量   算法   ber   int   

当前对象: this,对象可以通过 this 访问自己的属性和方法

 

对象访问自己的属性,可以通过this.属性名,当对象中的方法有与对象属性重名的变量名,为了区别,使用this访问对象的属性

 

类中名字的覆盖: 当与方法内变量重名时,不能省略this

 

方法内的变量称为局部变量

局部变量的名字会覆盖属性的名字

 

  例如:

  public void setNumber(int number)  // number : 局部变量

  {

    this.number = number;  // this.number: 对象的属性

  }

 

总结:

  对象 = 数据 + 方法

  属性 : 即是数据

  方法 : 即是算法

 

对象就是数据和算法的融合体

给它数据 =》 让它工作 =》 得到结果

当前对象this

标签:覆盖   col   span   不能   public   局部变量   算法   ber   int   

原文地址:https://www.cnblogs.com/yangwu-183/p/10200470.html

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