a亚洲精品_精品国产91乱码一区二区三区_亚洲精品在线免费观看视频_欧美日韩亚洲国产综合_久久久久久久久久久成人_在线区

首頁 > 系統 > Android > 正文

Android開發之Parcel機制實例分析

2020-04-11 11:32:44
字體:
來源:轉載
供稿:網友

本文實例講述了Android開發之Parcel機制。分享給大家供大家參考。具體分析如下:

在java中,有序列化機制。但是在安卓設備上,由于內存有限,所以設計了新的序列化機制。

Container for a message (data and object references) that can be sent through an IBinder.  A Parcel can contain both flattened data that will be unflattened on the other side of the IPC (using the various methods here for writing specific types, or the generalParcelable interface), and references to liveIBinder objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel.

Parcel is not a general-purpose serialization mechanism.  This class (and the correspondingParcelable API for placing arbitrary objects into a Parcel) is designed as a high-performance IPC transport.  As such, it is not appropriate to place any Parcel data in to persistent storage: changes in the underlying implementation of any of the data in the Parcel can render older data unreadable.

從上面的官方解釋可以看到,Parcel主要就是用來序列化,在一端編碼,在另外一端進行解碼。

本質上把它當成一個Serialize就可以了,只是它是在內存中完成的序列化和反序列化,利用的是連續的內存空間,因此會更加高效。

我們接下來要說的是Parcel類如何應用。就應用程序而言,最常見使用Parcel類的場景就是在Activity間傳遞數據。沒錯,在Activity間使用Intent傳遞數據的時候,可以通過Parcelable機制傳遞復雜的對象。

具體例子可以參見這里,寫的很好。

在實現Parcelable接口的時候,必須實現其中的兩個方法并且定義一個CREATOR:

@Override public int describeContents() {    return 0; } @Override public void writeToParcel(Parcel dest, int flags) {    dest.writeInt(color); }

其中,writeToParcel方法定義了怎么向序列化中寫入該類對象的信息。

CREATOR對象中定義了兩個函數:

public MyColor createFromParcel(Parcel in) {  return new MyColor(in);}public MyColor[] newArray(int size) {  return new MyColor[size];}

其中,createFromParcel方法告訴平臺如何從已經序列化的對象中構建該類的實例。newArray方法的作用不明。實現于Parcelable接口的CREATOR成員的createFromParcel方法用于告訴平臺如何從包裹里創建該類的實例,而writeToParcel方法則用于告訴平臺如何將該類的實例存儲到包裹中。通過這種約定,平臺就知道怎么序列化和反序列化了。

希望本文所述對大家的Android程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 日韩毛片在线观看 | 成人中文字幕在线 | 午夜一区二区在线观看 | 久久电影国产免费久久电影 | 久久久婷婷 | 午夜在线观看免费 | 国产毛片aaa | 久久成 | 欧美a v在线播放 | 日韩一区二区在线观看视频 | 欧美国产精品一区 | 在线不卡一区 | 日本精品一区二区 | 成人av视| 伊人影院久久 | 亚洲h在线观看 | 欧美日韩高清一区 | 久久99精品久久久久久琪琪 | 在线国产区 | 欧美中文字幕在线 | 国产精品一区二区三区四区 | 欧美国产日韩在线观看 | 美女日批视频在线观看 | 国内自拍视频在线观看 | 日本视频免费 | 亚洲伦理在线观看 | 免费黄色小片 | 亚洲欧美精品 | 国产欧美日本 | 成人不卡视频 | 国产视频网| 欧美中文一区 | 国产suv精品一区二区六 | 亚洲色图p | 日本欧美中文字幕 | 欧美大片在线观看 | 国产精品自拍视频网站 | 天堂资源av| 亚洲一级黄色 | 精品欧美一区二区三区精品久久 | 亚洲成av人片一区二区梦乃 |