gpt4 book ai didi

ruby 混合 : extend or include?

转载 作者:太空宇宙 更新时间:2023-11-03 16:09:03 24 4
gpt4 key购买 nike

我有以下代码:

module CarHelper
def call_helpline
puts "Calling helpline..."
end
end

class Car
extend CarHelper
end

class Truck
class << self
include CarHelper
end
end

# Test code
Car.call_helpline
Truck.call_helpline

事实上,两行测试代码都有效。那么有什么区别吗在我使用“extend”和“include”的方式之间(在单例类中self)?

最佳答案

不,这是同一件事,但第一种方式更干净。

关于 ruby 混合 : extend or include?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7605575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com