ruby類和方法

來源:互聯網
上載者:User

標籤:

 Ruby 提供了四種類型的變數

 局部變數:小寫字母或_開頭

 執行個體變數:執行個體變數可跨越任何特定執行個體或對象的方法,意味著,從對象到對象的執行個體變數改變。執行個體變數前面加at符號@,緊接著變數名

 類變數:類變數是可在各種不同的對象 一個類變數屬於類 是類的一個特點 他們前面的符號@@跟著的類變數名

 全域變數:類變數不能跨類 如果想要一個單一的變數可以跨類 需要定義一個全域變數 全域變數的前面總是用貨幣符號$

=end

 =begin

 Ruby 中使用new方法建立對象  對象是類的執行個體

 =end

class Customer

 @@no_of_customers = 0 #使用類變數@@ 能確定建立的對象的數量

@no_of_wheels

 def initialize #重寫初始化方法

   @no_of_wheels = "324243234"

end

 def initialize(wheels)#自訂初始化方法 傳入參數wheels

   @no_of_wheels = wheels

end

 def hello

    puts "hello#{@@no_of_customers}#{@no_of_wheels}"

end

 end

 #調用對象方法

object = Customer.new("werrwerwrew")

object.hello

 

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.