函数不能超过的最大参数数是多少

发布于 2024-12-23 02:15:32 字数 115 浏览 0 评论 0原文

如果你正在编写一个函数来做某事,并且这个函数需要大量输入(参数),那么我应该创建一个结构、类或其他什么......来传递这些参数吗?

换句话说,我们不应超过并使用类中的结构或对象的建议参数数量是多少?

If you are writing a function for doing something and this function needs a lot of input(Parameters), so should I make a structure, class or whatever... to pass those parameters or not?

In other words, what's the recommended count of parameters that we should not exceed and use structure or object from class instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

扭转时空 2024-12-30 02:15:32

为了便于阅读,您确实应该创建一个 参数对象 - 这是众所周知的重构。

您可以在 BCL 本身的多个位置看到这一点 - < code>Process 类可以采用 ProcessStartInfo 参数对象。

有些人认为 7 个参数应该是最多的,其他人则认为 3 个。您需要与您的团队就此达成一致。如果单独工作,请考虑增加可读性。

For readability you should indeed create a parameter object - it is a well known refactoring.

This is something you see in several places in the BCL itself - the Process class can take a ProcessStartInfo parameter object.

Some people think that 7 should be the most number of parameters, others say 3. You need to agree with your team on this. If working alone, look at increasing readability.

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