我对Gson解串器有问题,它只会创建超类:/ 例如:
public class Fool{}
public class Fool2 extends Fool{}
public class Object
{
/*
This, when recreated by Gson deserializer will create a class of type Fool
and not Fool2 :/
*/
private Fool fool = new Fool2();
}
有没有一种方法可以存储变量类型的类路径? 非常感谢;)