Ruby學習之module

來源:互聯網
上載者:User

標籤:style   blog   color   os   使用   ar   sp   div   c   

我們可以認為module是一個專門存放一系列方法和常量的工具箱。

module和class非常像, 只是module不能建立執行個體也不能有子類, 它們僅僅能存放東西。

例如:

module Circle  PI = 3.141592653589793    def Circle.area(radius)    PI * radius**2  end    def Circle.circumference(radius)    2 * PI * radius  endend

 module書寫格式

module ModuleName    #end

就像類名一樣, module名也用大寫字母,並且不使用底線_。

module的一個最主要的作用是把方法和常量分離到一個有名字的空間中,這個空間叫做名字空間(namespacing),這樣就不會混淆例如Math::PI和Circle::PI這兩種不同的PI值。兩個冒號::被稱作範圍解析操作符, 它用來告訴Ruby去哪找到我們所需要的那個值或方法,如果我們想找Math::PI,Ruby知道要到Math的module中去找PI。

 

一些module已經包含在了Ruby解譯器中,但是有些需要顯式地包含進來, 我們可以用關鍵字require,如下:

require "module"

如果我們想要用Ruby的Date module來顯示今天的日期, 但是我們還沒有用require把它包含進來,那麼我們需要進行如下操作:

require "date"puts Date.today

 

我們當然可以用require包含更多的module, 但是我們還可以用include關鍵字

任何類如果include了一個module,那麼這個類可以使用這個module的方法。

使用include有一個好處, 那就是我們不再必須寫包含常量或方法的module名了,因為module中所有的資訊都已經包含進了include這個module的類, 我們可以直接使用PI而不用Math::PI, 如下:

class Angle  include Math  attr_accessor :radians    def initialize(radians)    @radians = radians  end    def cosine    cos(@radians)  endendacute = Angle.new(1)acute.cosine

 

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.