[問題] Class 內包括Class 如何抽象?

看板Ruby作者 (Brian)時間9年前 (2015/02/17 09:59), 編輯推噓2(201)
留言3則, 2人參與, 最新討論串1/1
想請問類別a當中包含一個類別b, 並使用類別b的實例, 這樣要如何將a 抽象產生module, 並且包含類別b ? 謝謝 class a attr_reader :a def initialize @a = b.new end class b attr_reader :b def initialize #... end end end -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 72.222.212.215 ※ 文章網址: https://www.ptt.cc/bbs/Ruby/M.1424138349.A.008.html

02/17 10:37, , 1F
把a前面的class改成module 然後其他類別includ a就好
02/17 10:37, 1F

02/17 10:38, , 2F
話說class和module的名稱都要是大寫開頭...
02/17 10:38, 2F

02/17 10:44, , 3F
甚麼是抽象成module?
02/17 10:44, 3F
文章代碼(AID): #1Kug1j08 (Ruby)
文章代碼(AID): #1Kug1j08 (Ruby)