Ruby module ---模組,組件

來源:互聯網
上載者:User

標籤:

  • module 的主要目的是把不同的方法和常量分別放進不同的命名空間。
  • module 的命名方式跟類一樣首字母大寫,多個單詞不用底線。 如:CircleArea
  • module 文法
      module ModuleName
              ......
      end
  • module用範圍解析操作符“::”來調用module中的方法和常量。 如:Math::PI, Math 是module名。
  • 匯入模組的方法:
    1. require ‘module‘ -----匯入模組。
        如:require ‘date‘, 匯入Date模組,但是不是require ‘Date‘
        調用module中的方法和常量時用模組名和範圍解析操作符,如Math::PI

    2. include 模組名, 如include Math
        調用模組中的方法和常量時不需要寫模組名和範圍解析操作符,直接調用。如:cos(), 而不需要寫Math::cos()
  • 可以把module看成是一個不能執行個體化,不能繼承的類,它可以和類一起類比實現多重繼承

    module MartialArts
      def swordsman
      puts "I‘m a swordsman."
      end
    end

    class Ninja
      include MartialArts
      def initialize(clan)
        @clan = clan
      end
    end

    class Samurai
      include MartialArts
      def initialize(shogun)
        @shogun = shogun
      end
    end

  • include關鍵字讓執行個體可以使用模型中的方法和常量,extend關鍵字則可以讓類自身使用模型中的方法和常量

    module ThePresent
      def now
        puts "It‘s #{Time.new.hour > 12 ? Time.new.hour - 12 : Time.new.hour}:#{Time.new.min} #{Time.new.hour > 12 ? ‘PM‘ : ‘AM‘} (GMT)."
      end
    end

    class TheHereAnd
      extend ThePresent
    end

    TheHereAnd.now

Ruby module ---模組,組件

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.