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.
当注册详细信息公开时,我可以使用 getter 和 setter 来获取注册详细信息吗?请帮忙
简短的回答:是的。一般来说,可见性对拥有 getter 和 setter(访问器)的可能性没有影响。
长答案:可见性对使用访问器的可能性没有直接影响。但是要非常小心。在大多数情况下,对属性使用公共可见性是违反面向对象方法的范例。同样为所有属性设置公共访问器会导致类似于将所有属性公开的实际情况。也许你应该重新考虑你的设计?