如何在 C# 中实现常量正确性?

发布于 2024-07-06 06:49:18 字数 518 浏览 12 评论 0原文

可能的重复:
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 技术交流群。

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

发布评论

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

评论(2

喜爱纠缠 2024-07-13 06:49:18

Stan Lippman 有一篇关于此问题的优秀博客文章: A const 问题

There is an excellent blog post about this issue by Stan Lippman: A question of const

甜`诱少女 2024-07-13 06:49:18

如果重要的话,我会使用不可变的对象。 或者,至少,我在属性设置器中使用逻辑。

If it matters, I use immutable objects. Or, at a minimum, I use the logic in my property setters.

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