我正在创建一个支持 API 网络的库。该库的中心当前是每个 API 客户端子类的客户端类。由于我是编写所有 API 的人,因此它们的功能都类似(restful、通过 access_token 进行授权等)。
然而,与其他 ruby API 客户端库(Twitter等)不同,客户端类不应直接实例化。这是因为该库不限于单个 API。相反,每个 API 客户端都将继承 Client 类。我的问题如下:
有没有办法要求 Ruby 类只通过子类初始化?
此外,在阅读这个问题时,我认为一个类比一个 mixin 更好。
对于那些想要代码的人,这里有一个例子:
class A
def initialize(options = {})
#what goes on in here doesn't really matter for the purpose of this question
#I just don't want it to be initialized directly
options.each do |k,v|
instance_variable_set("@#{k}",v) unless v.nil?
end
end
end
class B < A
attr_accessor :class_specific_opt
def initialize( options = {} )
@class_specific_opt = "val" unless options[:class_specific_opt].nil?
super(options)
end
end
有什么想法吗?