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

java 中 final 的用法

时间:2016-10-25 07:46:50      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:覆盖   不能被继承   方法   变量   hello   定义   自定义   不能   自定义常量   

/*
final可以修饰类,方法,变量

特点:
final可以修饰类,该类不能被继承。
final可以修饰方法,该方法不能被重写。(覆盖,复写)
final可以修饰变量,该变量不能被重新赋值。因为这个变量其实常量。

常量:
A:字面值常量
"hello",10,true
B:自定义常量
final int x = 10;
*/

java 中 final 的用法

标签:覆盖   不能被继承   方法   变量   hello   定义   自定义   不能   自定义常量   

原文地址:http://www.cnblogs.com/panda88/p/5995303.html

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