《大話設計模式》ruby版代碼:面板模式

來源:互聯網
上載者:User

標籤:

需求:

股民買賣股票

初步代碼:

# -*- encoding: utf-8 -*-#股票1class Stock1    def buy        puts ‘股票1買入‘    end        def sell        puts ‘股票1賣出‘    endend#股票2class Stock2    def buy        puts ‘股票2買入‘    end        def sell        puts ‘股票2賣出‘    endend#股票3class Stock3    def buy        puts ‘股票3買入‘    end        def sell        puts ‘股票3賣出‘    endend#國債1class NationalDebt1    def buy        puts ‘國債1買入‘    end        def sell        puts ‘國債1賣出‘    endend#房地產1class Realty1    def buy        puts ‘房地產1買入‘    end        def sell        puts ‘房地產1賣出‘    endends1 = Stock1.news2 = Stock2.news3 = Stock3.newn1 = NationalDebt1.newr1 = Realty1.news1.buys2.buys3.buyn1.buyr1.buys1.sells2.sells3.selln1.sellr1.sell

問題:

可以發現使用者需要瞭解股票、國債、房產情況,需要參與這些項目的具體買和賣,耦合性很高。

改進代碼

# -*- encoding: utf-8 -*-#股票1class Stock1    def buy        puts ‘股票1買入‘    end        def sell        puts ‘股票1賣出‘    endend#股票2class Stock2    def buy        puts ‘股票2買入‘    end        def sell        puts ‘股票2賣出‘    endend#股票3class Stock3    def buy        puts ‘股票3買入‘    end        def sell        puts ‘股票3賣出‘    endend#國債1class NationalDebt1    def buy        puts ‘國債1買入‘    end        def sell        puts ‘國債1賣出‘    endend#房地產1class Realty1    def buy        puts ‘房地產1買入‘    end        def sell        puts ‘房地產1賣出‘    endend#基金類class Fund    attr_accessor s1, s2, s3, n1, r1        def initialize        s1 = Stock1.new        s2 = Stock2.new        s3 = Stock3.new        n1 = NationalDebt1.new        r1 = Realty1.new    end        def buy        s1.buy        s2.buy        s3.buy        n1.buy        r1.buy    end        def sell        s1.sell        s2.sell        s3.sell        n1.sell        r1.sell    endendf1 = Fund.newf1.buyf1.sell

 好處:使用者不需要瞭解各種股票,只需購買賣出基金即可。

 

面板模式:

為子系統中的一組介面提供一個一致的介面,此模式定義了一個高層介面,這個介面使得這一子系統更加容易使用。

《大話設計模式》ruby版代碼:面板模式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.