CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 观察者模式

搜索资源列表

  1. 77

    0下载:
  2. 某在线股票软件需要提供如下功能:当股票购买者所购买的某支股票价格变化幅度达到5 时,系统将自动发送通知(包括新价格)给购买该股票的股民。现使用观察者模式设计该系统-An online stock software needs to provide the following functions: when the amplitude of a stock stock buyers purchase price changes is 5 , the system will automaticall
  3. 所属分类:JavaScript

    • 发布日期:2017-04-14
    • 文件大小:4786
    • 提供者:鬼才
  1. daocrud

    0下载:
  2. android的DAO操作(provider带观察者模式)- The DAO android operating (provider with observer pattern)
  3. 所属分类:android

    • 发布日期:2017-04-16
    • 文件大小:55964
    • 提供者:Json
  1. Register

    0下载:
  2. android 开发中关于多个界面的管理采用了观察者模式的设计理念 完美实现了 android application 的actvity的生命周期的管理-Management of multiple Android interface development used in the observation of the perfect design concept model implementation of the Android application actvity life cycle
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-10
    • 文件大小:2332467
    • 提供者:图图
  1. The-designer-mode-observer-pattern

    0下载:
  2. 自己实现了23种经典的设计模式之观察者模式,观察者模式的两种模型“拉”模型和“推”模型-Their implementation of 23 kinds of classic design patterns of the observer pattern, two kinds of model of the observer pattern "pull" model and "push" model
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1966
    • 提供者:xiaojiang
  1. aflaxservice

    0下载:
  2. aflax编程,服务端反向推送技术,原理是在服务端启动一个Socket服务,页面加载时建立Socket连接,通过观察者模式通知后台Socket将数据发送到页面,文件包含了aflax源码,aflax demo,一个Java的后台服务端,一个服务端前台页面,经测试可用-aflax programming, server-side reverse push technology, the principle is to start a service on the server side Socket
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-06-14
    • 文件大小:22034313
    • 提供者:江天擎
  1. humorous-design-mode

    0下载:
  2. 这是一本关于设计模式的电子书(幽默设计模式),值得学习。 1、策略模式 2、代理模式 3、单例模式 4、多例模式 5、工厂方法模式 6、抽象工厂模式 7、门面模式 8、适配器模式 9、模板方法模式 10、建造者模式 11、桥梁模式 12、命令模式 13、装饰模式 14、迭代模式 15、组合模式 16、观察者模式 17、责任链模式 18、访问者模式 19、状态模式 20、原型模式 21、中介者模式 22、解释器
  3. 所属分类:Project Design

    • 发布日期:2017-05-08
    • 文件大小:1684178
    • 提供者:陈盛乾
  1. My_MVC

    0下载:
  2. 使用MVC模式和观察者模式实现画圆和计算面积、表面积-Use the MVC pattern and the observer pattern implementation Circle and computing area, surface area
  3. 所属分类:Data structs

    • 发布日期:2017-06-14
    • 文件大小:21715345
    • 提供者:huangbo
  1. WeatherStation

    0下载:
  2. 运用面向对象中的观察者模式,进行编写的简单的气象站-The use of object-oriented observer pattern, for the preparation of a simple weather station
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:12464
    • 提供者:华馨
  1. android_test

    0下载:
  2. android下的观察者模式实现分享,通过按钮新建观察者,当被观察者状态变化的时候,所有的观察者都发生对应的改变-observer model in desgin code,under android
  3. 所属分类:android

    • 发布日期:2017-04-25
    • 文件大小:42480
    • 提供者:xushuai
  1. Watcher

    0下载:
  2. 观察者模式(Observer)完美的将观察者和被观察的对象分离开。举个例子,用户界面可以作为一个观察者,业务数据是被观察者,用户界面观察业务数据的变化,发现数据变化后,就显示在界面上。-The observer pattern (Observer) will be the perfect the observer and the observed points out. For example, the user interface can be used as an observer, the
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:1588
    • 提供者:张衡
  1. Observer-Thread-sample

    0下载:
  2. 考虑到这些应用, 比较合适的就是 Observer (观察者) 模式, 不仅可以动态的加入/移出观察者, 也能够让线程类 (Core) 和显示类 (UI) 之间脱耦. 可谓一举多得. 于是我就试着写了个线程搜索路径下所有文件的例子, 在其中应用了 Observer 模式.-Decoupling between the consideration of these applications is more appropriate Observer (Observer) mode, not only
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-17
    • 文件大小:481743
    • 提供者:LI
  1. pattern

    0下载:
  2. 23种设计模式Java源码,包括创建型模式,共五种:工厂方法模式、抽象工厂模式、单例模式、建造者模式、原型模式。 结构型模式,共七种:适配器模式、装饰器模式、代理模式、外观模式、桥接模式、组合模式、享元模式。 行为型模式,共十一种:策略模式、模板方法模式、观察者模式、迭代子模式、责任链模式、命令模式、备忘录模式、状态模式、访问者模式、中介者模式、解释器模式。-23 kinds of design patterns
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:161274
    • 提供者:康健
  1. guanc

    0下载:
  2. 对安卓观察者模式的实现,在java的环境先实现其功能,对于想了解使用安卓的观察者模式是一个很好的鉴定。-Andrews observer mode to achieve, the environment in the first java achieve its function, for those who want to understand the use of Android is a good observer pattern identification.
  3. 所属分类:android

    • 发布日期:2017-04-07
    • 文件大小:5339
    • 提供者:asas
  1. SignModel

    0下载:
  2. 《head first设计模式》工厂模式和观察者模式的完整代码-The complete code head first design patterns factory model and observer pattern
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:17403
    • 提供者:傅海燕
  1. headfirst_observer_subject

    0下载:
  2. 设计模式观察者模式,使用的一个weatherdata数据作为subject,然后三个布告板当做Display-observer subject
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:10534
    • 提供者:fengpeng
  1. pushlettest

    0下载:
  2. Pushlet 是一个开源的 Comet 框架,Pushlet 使用了观察者模式:客户端发送请求,订阅感兴趣的事件;服务器端为每个客户端分配一个会话 ID 作为标记,事件源会把新产生的事件以多播的方式发送到订阅者的事件队列里-Pushlet framework is an open source of Comet, Pushlet using the observer pattern: the client sends a request, subscribe to events of inte
  3. 所属分类:Java Develop

    • 发布日期:2017-03-30
    • 文件大小:519575
    • 提供者:jinweixing
  1. Observer-Pattern

    0下载:
  2. 观察者模式-在对象之间定义一对多的依赖。使用java 实现设计模式中的一种oberserver pattern-The observer pattern- defined many dependencies between objects. Use java design patterns to achieve one oberserver pattern
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2294
    • 提供者:蒋楚楚
  1. notifyTest

    0下载:
  2. 自写的一个使用观察者模式对多窗口进行消息通知的小例子。VS2013开发。-An example for notify any other Dialog with Observer Design Pattern.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:133173
    • 提供者:yin
  1. ObservableTest

    0下载:
  2. Java 设计模式之 观察者模式,简单而使用,大家一看就明白了!-Java design patterns of the observer mode, simple to use, everyone can understand it!
  3. 所属分类:Java Develop

    • 发布日期:2017-04-15
    • 文件大小:6597
    • 提供者:小明
  1. observer-mode

    0下载:
  2. 经典设计模式中的观察者模式,通过代码实现,详细说明了观察者模式的思想-Classic design mode observer mode, by code, a detailed descr iption of the mode of thinking observer
  3. 所属分类:CSharp

    • 发布日期:2017-04-24
    • 文件大小:106356
    • 提供者:赵小韩
« 1 2 3 4 5 67 8 9 »
搜珍网 www.dssz.com