eclipse报错资料备份
Posted 极客阿正
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse报错资料备份相关的知识,希望对你有一定的参考价值。
一、
eclipse中初始化控件出错
在添加 TextView myTextView=(TextView)this.findViewById(R.id.myTextView); Button myButton=(Button)this.findViewById(R.id.myButton); 时,发生了"textview cannot be resolved to a type“错误,后在开头加入 import android.widget.Button; import android.widget.TextView; 即解决 shift+ctrl+o
二、
@Override是伪代码,表示重写(当然不写也可以),不过写上有如下好处: 1、可以当注释用,方便阅读 2、编译器可以给你验证@Override下面的方法名是否是你父类中所有的,如果没有则报错 比如你如果没写@Override而你下面的方法名又写错了,这时你的编译器是可以通过的(它以为这个方法是你的子类中自己增加的方法) example: 在重写父类的onCreate时,在方法前面加上@Override 系统可以帮你检查方法的正确性。 例如,public void onCreate(Bundle savedInstanceState){…….}这种写法是正确的, 如果你写成public void oncreate(Bundle savedInstanceState){…….} 这样编译器回报如下错误—— The method oncreate(Bundle) of type HelloWorld must override or implement a supertype method, 以确保你正确重写onCreate方法。(因为oncreate应该为onCreate) 而如果你不加@Override,则编译器将不会检测出错误,而是会认为你新定义了一个方法oncreate。