在App Engine docs的示例中,为什么示例会像这样声明contactInfos
(没有泛型):
import javax.jdo.annotations.Element;
// ...
@Persistent
@Element(dependent = "true")
private List contactInfos;
而不是像这样,使用Generic:
import javax.jdo.annotations.Element;
// ...
@Persistent
@Element(dependent = "true")
private List <ContactInfo> contactInfos;
答案 0 :(得分:1)
非常需要泛型,强烈推荐。
在App Engine中指定List<ContactInfo>
是绝对可行的,我无法想象这表明App Engine中不允许使用通用列表。