zoukankan      html  css  js  c++  java
  • handler.obtainMessage()理解

    在handler.obtainMessage()的参数是这样写的:
    Message android.os.Handler.obtainMessage(int what, int arg1, int arg2, Object obj)

    public final Message obtainMessage (int what, int arg1, int arg2, Object obj)
    Since: API Level 1
    Same as obtainMessage(), except that it also sets the what, obj, arg1,and arg2 values on the returned Message.

    Parameters
    what  Value to assign to the returned Message.what field.
    arg1  Value to assign to the returned Message.arg1 field.
    arg2  Value to assign to the returned Message.arg2 field.
    obj  Value to assign to the returned Message.obj field.

    而Handler中obtainMessage与new Message的区别:

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

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

    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);  
    第一种写法是message 从handler 类获取,从而可以直接向该handler 对象发送消息,第二种写法是直接调用 handler 的发送消息方法发送消息。
  • 相关阅读:
    【UVA11324】 The Largest Clique (Tarjan+topsort/记忆化搜索)
    【洛谷2245】 星际导航 (最小瓶颈路)
    【UVA10816】Travel in Desert (最小瓶颈路+最短路)
    【洛谷 5002】专心OI
    炸金花【大模拟】
    【BZOJ1055】[HAOI2008]玩具取名(区间DP)
    【BZOJ1296】[SCOI2009]粉刷匠 (DP+背包)
    NOIP前的模板
    获取<考试>博文密码!o(*≧▽≦)ツ
    这是个萌新的萌新博客
  • 原文地址:https://www.cnblogs.com/qingblog/p/2607754.html
Copyright © 2011-2022 走看看