累计查询 0.00 亿次

observer pattern

  • 观察者模式:一种设计模式,用于在对象之间建立一对多的依赖关系,当一个对象的状态发生改变时,所有依赖于它的对象都会得到通知并自动更新。

双语例句

  1. Figure 1 illustrates how the Observer pattern works.
    图1显示了观察者模式的机制。
  2. Figure 5: Structural elements in the Observer pattern.
    图5:observer模式中的结构化元素。
  3. This general data pattern is a form of the Observer pattern.
    这种通用数据模式是Observer模式的一种形式。

网络短语

  • The Observer Pattern
    观察者模式
  • Describing the Observer Pattern
    描述观察者模式
  • Observer Design Pattern
    观察者设计模式;观察者模式;Observer设计模式;基于观察者设计模式
  • the observer desing pattern
    观察者模式
  • Design Pattern - Observer
    观察者设计模式

英英释义

  • The observer pattern is a software design pattern in which an object, called the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. It is mainly used to implement distributed event handling systems.