函数不能超过的最大参数数是多少
如果你正在编写一个函数来做某事,并且这个函数需要大量输入(参数),那么我应该创建一个结构、类或其他什么......来传递这些参数吗?
换句话说,我们不应超过并使用类中的结构或对象的建议参数数量是多少?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了便于阅读,您确实应该创建一个 参数对象 - 这是众所周知的重构。
您可以在 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 aProcessStartInfo
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.