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.
Java 中是否有@property像 Objective-C 中一样的属性?
@property
如果有,我可以命名该对象,然后通过 objectName.propertyName 访问它的属性吗?
谢谢。
不,对于您想要的目的,没有直接替代注释..
事实上,您需要做的就是将属性定义为 public,然后您可以将它与 objectname.propertyname 一起使用。但是,在 OOP 设计中,不赞成直接访问属性字段。尝试阅读有关访问器方法的信息。