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.
这可能吗?例如,我有一个名为 telef 的类企业对象,它有一个价格变量,我希望能够从另一个类访问该企业的该价格变量。先感谢您
是的,只需创建一个公共 getter 方法。
例如在您的企业类中:
private String price; public String getPrice() { return price; }
telef现在从具有我们可以编写的对象的任何其他类中:
telef
String price = telef.getPrice();
这违反了数据隐藏的概念,但您可以通过简单地公开它来做到这一点。