final
Posted PoeticalJustice
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了final相关的知识,希望对你有一定的参考价值。
1 /** 2 * final修饰的变量 是常量 只能赋值一次 不能被改变 3 * final 修饰的方法 不能被重写 但是可以重载 4 * final修饰的类 不能有子类 ,不能被继承。比如 Math String 5 * @author Administrator 6 * 7 */ 8 public class testFinal { 9 // final修饰的变量 是常量 常量名用大写 和 下划线命名 是不可改变的 10 final int MAX_VALUE= 200; 11 //再次赋值是不行的 MAX_VALUE=300; 12 13 }
final修饰方法和类
1 /** 2 * 类前面加final 下面 子类Bird报错 说明 加了final不能被继承T he type Bird cannot subclass the final class Animal 3 *方法加了final 就不能被重写 下面的重写方法报错 The method run() is undefined for the type Animal 4 */ 5 //类前面加final 下面 子类Bird报错 说明 加了final不能被继承 6 public /*final*/ class Animal { 7 String eye; 8 //方法加了final 就不能被重写 下面的重写方法报错 9 //The method run() is undefined for the type Animal 10 public void /*final*/ run(){ 11 System.out.println("跑跑!"); 12 } 13 } 14 15 class Bird extends Animal{ 16 17 public void run(){ 18 super.run();//调用的原来父类Animal的run();方法 19 //不满意可以重写 overwrite 20 System.out.println("飞啊飞"); 21 } 22 23 public void eggsheng(){ 24 System.out.println("我是卵生"); 25 } 26 }
以上是关于final的主要内容,如果未能解决你的问题,请参考以下文章
[AndroidStudio]_[初级]_[配置自动完成的代码片段]
[AndroidStudio]_[初级]_[配置自动完成的代码片段]