可观察集合和可数集合有什么区别?

发布于 2024-08-25 04:56:59 字数 29 浏览 7 评论 0 原文

什么是可观察集合以及它与可枚举集合有何不同?

What is an observable collection and how it is different than a enumerable collection?

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

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

发布评论

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

评论(1

北斗星光 2024-09-01 04:56:59

可观察集合实现了著名的“观察者”设计模式。它是GOF名著中列出的设计模式之一。

基本思想如下 - 如果多个对象对同一个对象有一定的依赖关系,这样当该对象内部发生一些有趣的事情时,所有这些依赖对象都应该立即收到有关该事件的通知,然后使用此模式。这里我们将依赖对象称为“观察者”,将它们所依赖的对象称为“主体”。当主体内部发生某些事件时,主体有责任将该事件通知给所有观察者。为了促进这种消息传递,所有观察者都必须在创建主题时订阅该主题。详细信息可以在此处

An observable collection implements the famous "Observer" design pattern. It is one of the design patterns that are listed in the famous book of the GOF.

The basic idea is as follows - if several objects has some dependency on the same object, such that when some interesting things happen inside that object, all those dependent objects should be notified about the event immediately, then this pattern is used. Here we call the dependent objects as the "Observer", and the objects onto which they all are depending as "Subject". When some event happens inside the subject, it is the responsibility of the subject to notify all the observers about this event. To facilitate this sort of message passing, all the observers has to subscribe to the subject when they are created. Details can be found here.

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