public class MainActivity extends Activity {
static final String UPPER_NUM="upper";
EditText et;
CalThread calThread;
//定义一个线程类
class CalThread extends Thread{
public Handler handler;
public void run(){
Looper.prepare();
handler=new Handler(){
//定义处理消息的方法
@Override
public void handleMessage(Message msg){
if(msg.what==0x123){
int upper=msg.getData().getInt(UPPER_NUM);
List<Integer> nums=new ArrayList<Integer>();
//计算从2开始,到upper的所有质数
outer:
for(int i=2;i<=upper;i++){
//用i除以2开始,到I的平方根的所有数
for(int j=2;j<=Math.sqrt(i);j++){
//如果可以整出,则表明这个数不是指数
if(i!=2 && i%j==0){
continue outer;
}
}
nums.add(i);
}
//使用Toast显示统计出来的所有质数
Toast.makeText(MainActivity.this,nums.toString(),Toast.LENGTH_LONG).show();
}
}
};
Looper.loop();
}
}
@Override
public void onCreate(Bundle saveInstanceState){
super.onCreate(saveInstanceState);
setContentView(R.layout.main);
et=(EditText) findViewById(R.id.et);
//启动新线程-----------------------------------------------------111111
calThread=new CalThread();
calThread.start();
}
//为按钮的点击事件提供事件处理方法
public void cal(View source){
//-------------------------------------------------------------------2222222
//创建消息
Message msg=new Message();
msg.what=0x123;
Bundle bundle=new Bundle();
bundle.putInt(UPPER_NUM,Integer.parseInt(et.getText().toString()));
msg.setData(bundle);
//向新线程中的Handle发送消息
calThread.handler.sendMessage(msg); //3333333333333333333333333
}
}
现在这段代码是正确的
如果把1处的线程放在2处启动就出现了异常
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.os.Handler.sendMessage(android.os.Message)' on a null object reference 提示了3段错了
按逻辑来说不是当按下按钮后才会启动这个线程去运算的吗?