在哪里可以找到关于观察者设计模式的好材料?
哪里可以找到研究观察者模式的好材料?我需要一些代码示例以及建模情况的图片
Where to find good material to study observer pattern? I need some examples, of code and also pictures of modelled situations
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Head First 设计模式是一本适合您的书。
这本书里有大量的图片。
(来源:headfirstlabs.com)
这里是观察者模式和其他模式的代码(JAVA)。
Head first design patterns is the book for you.
There are loads of pictures in this book.
(source: headfirstlabs.com)
Here is the code for observer pattern and other patterns (JAVA).
Java 中的设计模式一书中有关观察者模式的大部分章节可以在 Google 图书。
对于 Head First 设计模式,顺便说一句。
替代文本 http://bks6.books.google.com/books?id=S5ebGvuLJqQC&printsec=frontcover&img=1&zoom=5&edge=curl&sig=ACfU3U3OFvA14Y4IKb9iZ-eH664YW15Fbg
替代文本 http://bks1.books.google.com/books?id=LjJcCnNf92kC&printsec=frontcover&img=1&zoom=5&edge=curl&sig=ACfU3U1t6E1H5cFgQvMyhE8hkYJk-Rt0Lg
Most of the chapter on the Observer pattern from the Design Patterns in Java book can be viewed on Google Books.
Same thing for Head First Design patterns, by the way.
alt text http://bks6.books.google.com/books?id=S5ebGvuLJqQC&printsec=frontcover&img=1&zoom=5&edge=curl&sig=ACfU3U3OFvA14Y4IKb9iZ-eH664YW15Fbg
alt text http://bks1.books.google.com/books?id=LjJcCnNf92kC&printsec=frontcover&img=1&zoom=5&edge=curl&sig=ACfU3U1t6E1H5cFgQvMyhE8hkYJk-Rt0Lg
对于初学者:维基百科上的观察者。它包括 Java、Python 和 C++ 示例以及大量链接。
这是一个 C# 示例 & UML图。
For starters: Observer on Wikipedia. It includes examples in Java, Python and C++, and lots of links.
Here is a C# example & UML diagram.
这是一篇关于观察者模式的精彩 dzone 文章。您可能还喜欢软件设计模式的非软件示例 。
Here's a nice dzone article about the observer pattern. You may also like Non-software examples of Software Design Patterns.