类方法:
跟实例无关,可以由class直接调用的方法
实例方法:
由某个class的实例调用的方法
class Apple
# 类方法
def Apple.name
'apple'
end
# 实例方法
def color
'red'
end
end
Apple.name
# => apple
Apple.new.color
# => color
类方法:
跟实例无关,可以由class直接调用的方法
实例方法:
由某个class的实例调用的方法
class Apple
# 类方法
def Apple.name
'apple'
end
# 实例方法
def color
'red'
end
end
Apple.name
# => apple
Apple.new.color
# => color