如果我有一个OpenStruct:
require 'ostruct'
open_struct = OpenStruct.new
我可以覆盖在某些情况下有效的[]
open_struct.define_singleton_method(:[]) do |*args|
puts args.map(&:class)
puts args
end
open_struct.a = 1
open_struct[:a]
# => Symbol
# a
但是当使用。method语法时,不会调用这个[]
方法:
open_struct.a
# => 1
我试图使一个类从OpenStruct继承和工作更像一个Javascript对象(基本上我试图消除运行call
的必要性存储为一个值的进程)
首先- OpenStruct的功能已经非常像JavaScript (#[]
是#call
的同义词):
JS:
foo = {}
foo.bar = function() { console.log("Hello, world!"); };
foo.bar();
// => Hello, world!
Ruby: foo = OpenStruct.new
foo.bar = proc { puts "Hello, world!" }
foo.bar[]
# => Hello, world!
如果你的意思是函数更像Ruby…你可以重写new_ostruct_member
:
require 'ostruct'
class AutoCallableOpenStruct < OpenStruct
protected def new_ostruct_member(name)
name = name.to_sym
unless respond_to?(name)
define_singleton_method(name) {
val = @table[name]
if Proc === val && val.arity == 0
val.call
else
val
end
}
define_singleton_method("#{name}=") { |x| modifiable[name] = x }
end
name
end
end
a = AutoCallableOpenStruct.new
a.name = "max"
a.helloworld = proc { puts "Hello, world!" }
a.hello = proc { |name| puts "Hello, #{name}!" }
a.name # non-Proc, retrieve
# => max
a.helloworld # nullary proc, autocall
# => Hello, world!
a.hello[a.name] # non-nullary Proc, retrieve (#[] invokes)
# => Hello, max!
请注意,Ruby中的OpenStruct
会减慢程序的速度,如果可以避免,就不应该使用它。