具有长参数列表或多个设置器的构造函数?
为了初始化一个实例,我们可以使用默认构造函数和多个 setter,或者使用带有长参数列表的构造函数。后一种方式在对象生成后对象状态可能保持不变(因为没有setter),但是长参数列表很难看并且容易出错。前一种方式避免了长参数列表,但对象创建完成后可能会被setter错误地更改对象状态。
我需要这样一个对象,它的内部字段在创建对象后应该保持不变,但我不喜欢长参数列表。这样做的最佳做法是什么?
To initialize an instance, we can use either a default constuctor and a number of setters, or a constructor with a long parameter list. In the latter way the object state may remain unchanged after the object is generated(because there is not setter), but a long parameter list is ugly and error-prone. In the former way the long parameter list is avoid, but the object state may be changed by setters by mistake after the object has been completely created.
I need such an object that its internal fields should remain unchanged after the object is created, while I do not like long parameter list. What is the best practice to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用构建器模式:
Use Builder pattern:
长参数列表可能(但不一定)意味着该类应该重构为较小的类。
A long parameter list could (but doesn't have to) mean that the class should be refactored to smaller classes.