Android中的可拆分和继承

Android中的可拆分和继承,第1张

Android中的可拆分继承

这是我最好的解决方案,很高兴听到有人对此有所想法。

public abstract class A implements Parcelable {    private int a;    protected A(int a) {        this.a = a;    }    public void writeToParcel(Parcel out, int flags) {        out.writeInt(a);    }    protected A(Parcel in) {        a = in.readInt();    }}public class B extends A {    private int b;    public B(int a, int b) {        super(a);        this.b = b;    }    public static final Parcelable.Creator<B> CREATOR = new Parcelable.Creator<B>() {        public B createFromParcel(Parcel in) { return new B(in);        }        public B[] newArray(int size) { return new B[size];        }    };    public int describeContents() {        return 0;    }    public void writeToParcel(Parcel out, int flags) {        super.writeToParcel(out, flags);        out.writeInt(b);    }    private B(Parcel in) {        super(in);        b = in.readInt();    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5177104.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存