如何在 C# 中实现常量正确性?
可能的重复:
C# 中的“常量正确性”
我已经编程 C++ 多年,但对 C++ 还很陌生C#。 在学习 C# 时,我发现 const 关键字的使用比C++。 AFAIK,例如,无法将函数的参数声明为 const。 我对我可能会对我的函数参数(可能是复杂的数据结构)进行无意的更改感到不舒服,而我只能通过测试来检测这些更改。
你如何处理这种情况?
Possible Duplicate:
“const correctness” in C#
I have programmed C++ for many years but am fairly new to C#. While learning C# I found that the use of the const keyword is much more limited than in C++. AFAIK, there is, for example, no way to declare arguments to a function const. I feel uncomfortable with the idea that I may make inadvertent changes to my function arguments (which may be complex data structures) that I can only detect by testing.
How do you deal with this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Stan Lippman 有一篇关于此问题的优秀博客文章: A const 问题
There is an excellent blog post about this issue by Stan Lippman: A question of const
如果重要的话,我会使用不可变的对象。 或者,至少,我在属性设置器中使用逻辑。
If it matters, I use immutable objects. Or, at a minimum, I use the logic in my property setters.