首页 > 移动平台 > 详细

android之handler obtainmessge与New message区别

时间:2014-01-14 21:50:50      阅读:871      评论:0      收藏:0      [点我收藏+]

obtainmessage()是从消息池中拿来一个msg 不需要另开辟空间new

new需要重新申请,效率低,obtianmessage可以循环利用;

bubuko.com,布布扣
//use Handler.obtainMessage(),instead of msg = new Message();
//because if there is already an Message object,that not be used by 
//any one ,the system will hand use that object,so you don‘t have to 
//create and object and allocate memory.
//it  is also another example of object recycling and reusing in android.
    Message msg = mHandler.obtainMessage();
    msg.what = UPDATE_LISTVIEW;
    msg.obj = current + "/" + total + "songs";
    //this method is called from worker Thread,so we cannot update UI from here.
    msg.sendToTarget();
bubuko.com,布布扣

在看下面代码:

Message msg = handler.obtainMessage();
                        msg.arg1 = i;
                        msg.sendToTarget(); 
Message msg=new Message();
    msg.arg1=i;
    handler.sendMessage(msg);

第一种写法是message 从handler 类获取,从而可以直接向该handler 对象发送消息,第二种写法是直接调用 handler 的发送消息方法发送消息

 

本文转自:http://blog.csdn.net/imdxt1986/article/details/7041570

android之handler obtainmessge与New message区别

原文:http://www.cnblogs.com/sishuiliuyun/p/3513901.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!