Android intent傳遞自訂類對象

來源:互聯網
上載者:User

Activity, Service之間傳遞資料使用intent來傳遞,但是android的api 文檔中都是傳遞int, long, float這種已知類型,那麼如何傳遞自訂類的對象呢?

使用 putExtra
(String
name, Serializable
value)

api.

所以自訂的類需要實現 Serializable

類。

自訂的
類中的成員類型也必須是實現Serializable的,當然基本類型除外。

 

例如:



public class MyClass implements Serializable {</p><p> private TreeMap<Integer, Item> data;<br /> private int count;<br /> private final int MAX_COUNT = 10;<br />}<br />public class Item implements Serializable{<br /> private String a;<br /> private String b;</p><p> public Item() {<br /> }<br />}

 

上面的MyClass和Item實現
Serializable。

 

是不是很好奇,其中用到的TreeMap還有String類,他們是實現Serializable的類嗎?

答案是 是的。下面是兩個類的聲明:

public class TreeMap<K, V> extends AbstractMap<K, V> implements SortedMap<K, V>, Cloneable, Serializable


public final class String implements Serializable, Comparable<String>, CharSequence


但,如果自訂的類本身不是真正的Serializable,那麼對於效率來講是沒有影響的。





 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.