标签:
final关键字可以用来修饰类、方法和变量。
1.final修饰的类不能被继承。
2.final修饰的方法不能被重写。
3.final修饰的变量是常量,不能修改其值。
关键字final的用法
原文地址:http://www.cnblogs.com/deam/p/5654502.html