Project1
标题:
class << DataManager是什么意思
[打印本页]
作者:
冷峻逸
时间:
2015-10-8 13:11
提示:
作者被禁止或删除 内容自动屏蔽
作者:
VIPArcher
时间:
2015-10-8 13:17
嗯 < 是小于, << 是远小于
打开 DataManager 的单例类,看不懂就别用了
作者:
冷峻逸
时间:
2015-10-8 18:23
提示:
作者被禁止或删除 内容自动屏蔽
作者:
余烬之中
时间:
2015-10-13 12:56
class A
def a
p 1
end
def self.b
p 2
end
end
class << A
def c
p 3
end
end
自行体会
作者:
冷峻逸
时间:
2015-10-14 12:59
提示:
作者被禁止或删除 内容自动屏蔽
作者:
余烬之中
时间:
2015-10-15 13:41
体会不到说明你现在的整体水平不足以理解 所以不建议你理解原理
class A
def a
p 1
end
def self.b
p 2
end
end
class << A
def c
p 3
end
end
A.new.a #=> 1
A.b #=> 2
A.c #=> 3
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1