9

这是一个一般的JAVA问题。在android中,有一个界面Parcelable

这是官方文档中的一个示例:

 public class MyParcelable implements Parcelable {
     private int mData;

     public int describeContents() {
         return 0;
     }

     public void writeToParcel(Parcel out, int flags) {
         out.writeInt(mData);
     }

     public static final Parcelable.Creator<MyParcelable> CREATOR
             = new Parcelable.Creator<MyParcelable>() {
         public MyParcelable createFromParcel(Parcel in) {
             return new MyParcelable(in);
         }

         public MyParcelable[] newArray(int size) {
             return new MyParcelable[size];
         }
     };

     private MyParcelable(Parcel in) {
         mData = in.readInt();
     }
 }

我们需要实现 2 个功能describeContents()writeToParcel.

(问题) 除此之外,我们还需要将Parcelable.Creator<T>接口实现为一个名为 CREATOR 的静态字段。

一切实际上都是直截了当的。现在我想创建一个具有 Parcelable 类类型的通用类:

public class ShushContainer<T extends Parcelable> implements Parcelable

我能够实现 Parcelable。我可以调用T'swriteToParcel函数。但是,我无法访问静态 CREATOR 字段。

public class ShushContainer<T extends Parcelable> implements Parcelable {
    Vector<T> items;
    String someField;

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(someField);
        dest.writeInt(items.size());
        for(int i=0;i<items.size();i++)
            items.get(i).writeToParcel(dest, flags);
    }

    public ShushContainer(Parcel in) {
        someField = in.readString();
        int size = in.readInt();
        for(int i=0;i<size;i++)
            //this does not work
            items.add(T.CREATOR.createFromParcel(in));
    }

    public static final Parcelable.Creator<ShushContainer> CREATOR = new Parcelable.Creator<ShushContainer>() {
        public ShushContainer createFromParcel(Parcel in) {
            return new ShushContainer(in);
        }

        public ShushContainer[] newArray(int size) {
            return new ShushContainer[size];
        }
    };
}
4

2 回答 2

1

而不是 <T extends Parcelable>您需要<T extends ShushContainer<T> & Parcelable>这种方式,而是指定它,T以便ShushContainer您可以访问方法和变量。

public class ShushContainer<T extends ShushContainer<T> & Parcelable> 
implements Parcelable

这是使用的示例Serializable

class Sample<T extends Sample<T> & Serializable> implements Serializable {

  public static int CONST = 0;

   public void foo()
   {
     T.CONST = 5;
   }
}

更新

如果我理解正确,还有另一个类实现ParcelableCREATOR 你正在尝试静态变量的动态多态性,这是不可能的。

显示它如何失败的示例

public class Base {
    public static int count = 10;
}

public class Child extends Base {
    public static int count = 20;
}


class Sample<T extends Base> {
    T t = null;
    public void printCount() {
        System.out.println(T.count);
    }
    public Sample(T t) {
        this.t = t;
    }

    public static void main(String[] args) {
        Sample<Child> sample = new Sample<Child>(new Child());
        Sample<Base> sample1 = new Sample<Base>(new Base());
        sample.printCount();//Child value printed as 10
        sample1.printCount();//Same for parent value printed as  10
    }

}

该程序失败,因为静态字段绑定到类而不是实例,因此有两个单独count的一个用于访问值,Base一个用于访问,则它始终为 10。ChildBase

您可以使用反射来检查CREATOR字段是否存在并访问它。如果没有对象或类对象,这将是不可能的。

或者您可以使用TypeToken执行以下操作

class Sample<T extends Serializable> implements Serializable {

    public int abc = 0;
    public void foo() {
    }
    public static void main(String[] args) throws SecurityException, NoSuchFieldException {
        TypeToken<Sample<Integer>> token = new TypeToken<Sample<Integer>>() {
        };
        Class<?> t = token.getRawType();
        Field field = t.getDeclaredField("abc");
        field.setAccessible(true);
        System.out.println(field.getName());

    }
}
于 2012-09-26T12:52:44.377 回答
0

这并不能回答您关于如何访问静态 CREATOR 属性的问题,但是您不需要访问此属性实现 Parcelable。请参见下面的示例:

public class TestModel<T extends Parcelable> implements Parcelable {

private List<T> items;
private String someField;

public List<T> items() {
    return items;
}

public void setItems(List<T> newValue) {
    items = newValue;
}

public String someField() {
    return someField;
}

public void setSomeField(String newValue) {
    someField = newValue;
}

//region: Parcelable implementation

public TestModel(Parcel in) {
    someField = in.readString();

    int size = in.readInt();
    if (size == 0) {
        items = null;
    }

    else {

        Class<?> type = (Class<?>) in.readSerializable();

        items = new ArrayList<>(size);
        in.readList(items, type.getClassLoader());
    }
}

@Override
public int describeContents() {
    return 0;
}

@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(someField);

    if (items == null || items.size() == 0)
        dest.writeInt(0);

    else {
        dest.writeInt(items.size());

        final Class<?> objectsType = items.get(0).getClass();
        dest.writeSerializable(objectsType);

        dest.writeList(items);
    }

    dest.writeInt(items.size());
    for(int i=0;i<items.size();i++)
        items.get(i).writeToParcel(dest, flags);
}

public static final Parcelable.Creator<TestModel> CREATOR = new Parcelable.Creator<TestModel>() {
    public TestModel createFromParcel(Parcel in) {
        return new TestModel(in);
    }

    public TestModel[] newArray(int size) {
        return new TestModel[size];
    }
};

//endregion
}
于 2015-08-20T08:51:23.903 回答