今天寫了以下代碼:android
Button bt1=(Button)findViewById(R.id.btn1);this
bt1.setOnClickListener(bt1lis);指針
運行後報空指針錯誤。List
後來把錯誤
Button bt1=(Button)findViewById(R.id.btn1);
改成
Button bt1=(Button)this.findViewById(R.id.btn1);
就沒問題了。
更爲有意思的是,加上this跑起來之後,再把this去掉,也不報錯了,android鬧脾氣了?