刚刚实现了 IEnumerable是不可变的,那么其他最常用的不可变泛型接口还有哪些? MSDN没有说
刚刚意识到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了将接口称为不可变,
IEnumerable
不是,例如:不可变的对象示例是
字符串
。接口不可变是没有意义的,因为几乎根据定义,不可变对象需要 密封,接口显然不能密封。
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: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.