必承其重 | 欲带皇冠 2009-10-14 18:20 采纳率: 0%
浏览 602
已采纳

为什么要使用 getter 和 setter / 访问器? [打烊]

What's the advantage of using getters and setters - that only get and set - instead of simply using public fields for those variables?

If getters and setters are ever doing more than just the simple get/set, I can figure this one out very quickly, but I'm not 100% clear on how:

public String foo;

is any worse than:

private String foo;
public void setFoo(String foo) { this.foo = foo; }
public String getFoo() { return foo; }

Whereas the former takes a lot less boilerplate code.

转载于:https://stackoverflow.com/questions/1568091/why-use-getters-and-setters-accessors

  • 写回答

28条回答 默认 最新

  • 程序go 2009-10-14 18:47
    关注

    There are actually many good reasons to consider using accessors rather than directly exposing fields of a class - beyond just the argument of encapsulation and making future changes easier.

    Here are the some of the reasons I am aware of:

    • Encapsulation of behavior associated with getting or setting the property - this allows additional functionality (like validation) to be added more easily later.
    • Hiding the internal representation of the property while exposing a property using an alternative representation.
    • Insulating your public interface from change - allowing the public interface to remain constant while the implementation changes without affecting existing consumers.
    • Controlling the lifetime and memory management (disposal) semantics of the property - particularly important in non-managed memory environments (like C++ or Objective-C).
    • Providing a debugging interception point for when a property changes at runtime - debugging when and where a property changed to a particular value can be quite difficult without this in some languages.
    • Improved interoperability with libraries that are designed to operate against property getter/setters - Mocking, Serialization, and WPF come to mind.
    • Allowing inheritors to change the semantics of how the property behaves and is exposed by overriding the getter/setter methods.
    • Allowing the getter/setter to be passed around as lambda expressions rather than values.
    • Getters and setters can allow different access levels - for example the get may be public, but the set could be protected.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(27条)

报告相同问题?

悬赏问题

  • ¥50 易语言把MYSQL数据库中的数据添加至组合框
  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况