Android中obtainmessage(),obain()和new message()的区别.

obtainmessage()是从消息池中拿来一个msg,不需要另外开辟空间,可以循环利用;

new message需要重新申请空间,效率低.

  1. //use Handler.obtainMessage(),instead of msg = new Message();  
  2. //because if there is already an Message object,that not be used by   
  3. //any one ,the system will hand use that object,so you don't have to   
  4. //create and object and allocate memory.  
  5. //it  is also another example of object recycling and reusing in android.  
  6.     Message msg = mHandler.obtainMessage();  
  7.     msg.what = UPDATE_LISTVIEW;  
  8.     msg.obj = current + "/" + total + "songs";  
  9.     //this method is called from worker Thread,so we cannot update UI from here.  
  10.     msg.sendToTarget();  
在看下面代码:
  1. Message msg = handler.obtainMessage();  
  2.     msg.arg1 = i;  
  3.     msg.sendToTarget();   
  4.   
  5.   
  6. Message msg=new Message();  
  7.     msg.arg1=i;  
  8.     handler.sendMessage(msg); 
  9.  
  10. Message msg = Messge.obtain();
  11.    msg.arg1=i;  
  12.   handler.sendMessage(msg); 

        
第一种写法是message 从handler 类获取,从而可以直接向该handler 对象发送消息,第二种写法是直接调用 handler 的发送消息方法发送消息. 所以获取Message对象的最好方法,但是获取Message对象的最好方法是调用Message.obtain()或者Handler.obtainMessage(), 这样是从一个可回收对象池中获取Message对象。


部分源码分析:

进入obtain()方法:

图1:

 进入Message()方法:
图2:

查看obtainMessage()源码:

图3:

查看Message.obtain(this, what) 源码:

     

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值