• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    设计模式中的观察者模式在Ruby编程中的运用实例解析

    观察者模式(有时又被称为发布/订阅模式)是软件设计模式的一种。
    在此种模式中,一个目标对象管理所有相依于它的观察者对象,并且在它本身的状态改变时主动发出通知。
    这通常透过呼叫各观察者所提供的方法来实现。

    实现观察者模式的时候要注意,观察者和被观察对象之间的互动关系不能
    体现成类之间的直接调用,否则就将使观察者和被观察对象之间紧密的耦合起来,
    从根本上违反面向对象的设计的原则。无论是观察者“观察”观察对象,
    还是被观察者将自己的改变“通知”观察者,都不应该直接调用。

    通俗点说就是A对象(被观察)通知另一个(一些)对象(观察者)自己发生改变了,改变了什么,至于你们这些对象要做什么就不关我的事了,你们自己做去吧!耦合度就此降低了。。。

    下面的例子使用ruby的module实现了较为传统的观察者模式。使用module的好处是:subject类可能是其他基类的子类,mixin实现了类似多继承的效果。

    module Subject
     def initialize
      @observers = []
     end
    
     def add_observer ob
      @observers  ob
     end
    
     def delete_observer ob
      @observers.delete ob
     end
    
     def notify_observers
      @observers.each do |ob|
       ob.update self
      end
     end
    end
    
    class Employee
     include Subject
     attr_reader :name, :title
     attr_reader :salary
    
     def initialize name, title, salary
      super()
      @name = name
      @title = title
      @salary = salary
     end
    
     def salary=new_salary
      @salary = new_salary
      notify_observers
     end
    end
    
    class Taxman
     def update obj
      puts "#{obj.name} now has a salary of #{obj.salary}"
     end
    end
    
    jack = Employee.new('jack', 'prgramer', 3000)
    jack.add_observer(Taxman.new)
    jack.salary = 3000
    
    

    我们可以自己实现Subject module,不过这样做有些画蛇添足,因为ruby核心库本身就包含了Observable模块,我们只需要将其mixin代码既可。

    require 'observer'
    
    class Employee
     include Observable
    
     attr_reader :name, :title, :salary
    
     def initialize name, title, salary
      @name = name
      @title = title
      @salary = salary
     end 
    
     def salary=(new_salary)
      @salary = new_salary
      changed
      notify_observers(self)
     end # salary=
    end # Employee
    
    

    在notify_observers之前必须先调用changed方法,表示确实发生了改变,否则notify_observers方法是无效的。

    您可能感兴趣的文章:
    • 实例解析Ruby设计模式开发中对观察者模式的实现
    • 深入剖析Ruby设计模式编程中对命令模式的相关使用
    • Ruby设计模式编程中对外观模式的应用实例分析
    • 详解组合模式的结构及其在Ruby设计模式编程中的运用
    • 设计模式中的模板方法模式在Ruby中的应用实例两则
    • 实例解析Ruby设计模式编程中Strategy策略模式的使用
    • 实例讲解Ruby使用设计模式中的装饰器模式的方法
    • Ruby设计模式编程中使用Builder建造者模式的实例
    • 详解Ruby设计模式编程中对单例模式的运用
    • Ruby设计模式编程之适配器模式实战攻略
    • Ruby使用设计模式中的代理模式与装饰模式的代码实例
    • Ruby中使用设计模式中的简单工厂模式和工厂方法模式
    • 解析proxy代理模式在Ruby设计模式开发中的运用
    上一篇:实例解析Ruby设计模式开发中对观察者模式的实现
    下一篇:解析proxy代理模式在Ruby设计模式开发中的运用
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    设计模式中的观察者模式在Ruby编程中的运用实例解析 设计模式,中的,观察者,