Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将对象化实体(即由 注释的类@Entity)传递给接受的函数com.google.appengine.api.datastore.Entity吗?
@Entity
com.google.appengine.api.datastore.Entity
不,Java 是一种类型化语言。您只能将 com.google.appengine.api.datastore.Entity 的子类传递给接受 com.google.appengine.api.datastore.Entity 的函数。其他任何东西都不会编译。
不,实体注释不会更改对象的类型。objectify 中没有“getProperty”,但您当然可以使用反射或公共 BeanUtils 来做类似的事情。