SORU
14 Kasım 2008, Cuma


method_missing Ruby frikiklerinden

Ruby method_missing metot tanımlarken dikkat edilmesi gereken herhangi bir şey var mı? -So-açık miras, istisna atma, performans, ya da başka bir şey etkileşimleri bazı olup olmadığını merak ediyorum.

CEVAP
14 Kasım 2008, Cuma


Biraz açık bir: method_missing yeniden hep respond_to? tanımlayın. method_missing(:sym) çalışır respond_to?(:sym) her zaman doğru dönmelidir. Bu kullanan birçok kütüphane vardır.

Daha sonra:

Bir örnek:

# Wrap a Foo; don't expose the internal guts.
# Pass any method that starts with 'a' on to the
# Foo.
class FooWrapper
  def initialize(foo)
    @foo = foo
  end
  def some_method_that_doesnt_start_with_a
    'bar'
  end
  def a_method_that_does_start_with_a
    'baz'
  end
  def respond_to?(sym, include_private = false)
    pass_sym_to_foo?(sym) || super(sym, include_private)
  end
  def method_missing(sym, *args, &block)
    return foo.call(sym, *args, &block) if pass_sym_to_foo?(sym)
    super(sym, *args, &block)
  end
  private
  def pass_sym_to_foo?(sym)
    sym.to_s =~ /^a/ && @foo.respond_to?(sym)
  end
end

class Foo
  def argh
    'argh'
  end
  def blech
    'blech'
  end
end

w = FooWrapper.new(Foo.new)

w.respond_to?(:some_method_that_doesnt_start_with_a)
# => true
w.some_method_that_doesnt_start_with_a
# => 'bar'

w.respond_to?(:a_method_that_does_start_with_a)
# => true
w.a_method_that_does_start_with_a
# => 'baz'

w.respond_to?(:argh)
# => true
w.argh
# => 'argh'

w.respond_to?(:blech)
# => false
w.blech
# NoMethodError

w.respond_to?(:glem!)
# => false
w.glem!
# NoMethodError

w.respond_to?(:apples?)
w.apples?
# NoMethodError

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • GoogleTechTalks

    GoogleTechTa

    15 AĞUSTOS 2007
  • Menglong Tav

    Menglong Tav

    18 Temmuz 2010
  • undrmyumbrellaa

    undrmyumbrel

    25 Temmuz 2012