1

我在这个过程之前有这个:

protected void onPostExecute(SortedSet<RatedMessage> result) {
    List<Object> list=Arrays.asList(result.toArray());
    lancon.putExtra("results", list.toArray()); // as serializable
}

然后在另一部分我有

Object o=this.getIntent().getSerializableExtra("results");
//at this point the o holds the correct value (checked by debugger)
RatedMessage[] rm = (RatedMessage[]) o;// this line hangs out w ClassCastException
resultSet = new TreeSet<RatedMessage>(new Comp());
Collections.addAll(resultSet, rm);

为什么我得到 ClassCastException?

4

2 回答 2

1

最后我让它以这种方式工作:

Serializable s = this.getIntent().getSerializableExtra("results");
Object[] o = (Object[]) s;
if (o != null) {
    resultSet = new TreeSet<RatedMessage>(new Comp());
    for (int i = 0; i < o.length; i++) {
        if (o[i] instanceof RatedMessage) {
            resultSet.add((RatedMessage) o[i]);
        }
    }
}
于 2010-06-29T00:12:40.937 回答
1

对不起; 我忽略了 no-argtoArray()调用的使用。

请注意,有toArray(T[])一个将数组作为参数的重载方法。

通过使用这种形式,您可以控制数组的组件类型,它会按预期工作。

protected void onPostExecute(SortedSet<RatedMessage> result) {
  lancon.putExtra("results", result.toArray(new RatedMessage[result.size()]));
}
于 2010-06-29T04:42:27.323 回答