我有一个类Prova类实现Serializable。我必须把这个Set放在一个意图中。这是代码:
Set<Prova> set=..... // Set is declared first and it's not null
Intent intent = new Intent(getApplicationContext(), Example.class);
intent.putExtra("set",set);
这段代码告诉我:“无法解析方法”。有人可以帮帮我吗?
答案 0 :(得分:7)
尝试使用HashSet
代替Set
,然后您可以执行以下操作 -
HashSet<Prova> set = new HashSet<>();
Intent intent = new Intent(getApplicationContext(), Example.class);
intent.putExtra("mySet", set);;
Set
本身不实现Serializable
但HashSet
实现,而Intent可以保存任何实现Serializable或Parcelable的类的实例。