Android Serializable

作者: thebestofrocky | 来源:发表于2018-04-03 16:25 被阅读0次

class A implements Serializable{
private String id;
private B b;
}

class B implements Serializable{
private String id;
}

A包含B,B也继承了Serializable接口,所以A也是Serializable。

相关文章

网友评论

    本文标题:Android Serializable

    本文链接:https://www.haomeiwen.com/subject/kpkchftx.html