刚刚实现了 IEnumerable是不可变的,那么其他最常用的不可变泛型接口还有哪些? MSDN没有说

发布于 2024-12-02 22:23:52 字数 79 浏览 0 评论 0原文

刚刚意识到 IEnumerable 是不可变的,其他常用的不可变泛型接口还有哪些? MSDN没有说。

或者有什么好的网上资源吗?

Just realized IEnumerable is immutable, what are other commonly used immutable generic interfaces? MSDN doesn't say.

Or any good online resources?

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

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

发布评论

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

评论(1

两相知 2024-12-09 22:23:52

除了将接口称为不可变,IEnumerable 不是,例如:

List<string> myList = new List<string>();
myList.Add("Test"); // We just changed the state of myList, hence its not immutable

不可变的对象示例是 字符串

接口不可变是没有意义的,因为几乎根据定义,不可变对象需要 密封,接口显然不能密封。

Apart from the fact that it doesn't make a whole lot of sense to refer to interfaces as being immutable, IEnumerable<T> isn't, for example:

List<string> myList = new List<string>();
myList.Add("Test"); // We just changed the state of myList, hence its not immutable

An example of an object that is immutable is String.

It doesn't make sense for an interface to be immutable as almost by definition an immutable object needs to be sealed, which an interface obviously cannot be.

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