Java Notes 09 static/ final/ this | 关键词

常见关键词

关键词static
  • memory management purpose
  • get memory once(when loaded)
  • static property is shared in all onj
  • 适用于method, variable, block, class
  • static method:
    1)can be invoked with our the creation of the instance variable of the class.
    2) belongs to the class not to the object of the class.

关键词this
  • A reference that refers to an object itself.
  • constructor invokesanother constructor under same class.
  • current obj/ class

关键词 final
  • constant/ permenent value
  • 最终值,不可改变
  • 修饰class,method, variable
final class ClassName
  • 不能被继承,
  • 类中成员变量需手动设定,
  • 成员方法是final by defualt
final methodName
  • 继承类不可以修改final method‘s definition
  • 避免 override
  • private methods are final by default
final valName
  • Reference value 不再指向其他对象
  • 指向对象的内容可改变
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值