作者fr373969 (Brian)
看板Ruby
标题[问题] Class 内包括Class 如何抽象?
时间Tue Feb 17 09:59:06 2015
想请问类别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://webptt.com/cn.aspx?n=bbs/Ruby/M.1424138349.A.008.html
1F:推 AIGecko: 把a前面的class改成module 然後其他类别includ a就好 02/17 10:37
2F:→ AIGecko: 话说class和module的名称都要是大写开头... 02/17 10:38
3F:推 mars90226: 甚麽是抽象成module? 02/17 10:44