具有长参数列表或多个设置器的构造函数?

发布于 2024-10-28 05:19:05 字数 211 浏览 1 评论 0原文

为了初始化一个实例,我们可以使用默认构造函数和多个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不弃不离 2024-11-04 05:19:05

使用构建器模式

Foo foo = new FooBuilder().setBar(...).setBaz(...).build();

Use Builder pattern:

Foo foo = new FooBuilder().setBar(...).setBaz(...).build();
嘴硬脾气大 2024-11-04 05:19:05

长参数列表可能(但不一定)意味着该类应该重构为较小的类。

A long parameter list could (but doesn't have to) mean that the class should be refactored to smaller classes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文