web-dev-qa-db-ja.com

define_methodに引数を渡す方法は?

Define_methodを使用して定義されているメソッドに引数を渡したいのですが、どうすればよいですか?

150
Sixty4Bit

Define_methodに渡すブロックには、いくつかのパラメーターを含めることができます。これが、定義されたメソッドが引数を受け入れる方法です。メソッドを定義するとき、実際にはブロックにニックネームを付けて、クラスへの参照を保持しているだけです。パラメーターはブロックに付属しています。そう:

define_method(:say_hi) { |other| puts "Hi, " + other }
188
Kevin Conner

...およびオプションのパラメータが必要な場合

 class Bar
   define_method(:foo) do |arg=nil|                  
     arg                                                                                          
   end   
 end

 a = Bar.new
 a.foo
 #=> nil
 a.foo 1
 # => 1

...必要な数の引数

 class Bar
   define_method(:foo) do |*arg|                  
     arg                                                                                          
   end   
 end

 a = Bar.new
 a.foo
 #=> []
 a.foo 1
 # => [1]
 a.foo 1, 2 , 'AAA'
 # => [1, 2, 'AAA']

...の組み合わせ

 class Bar
   define_method(:foo) do |bubla,*arg|
     p bubla                  
     p arg                                                                                          
   end   
 end

 a = Bar.new
 a.foo
 #=> wrong number of arguments (0 for 1)
 a.foo 1
 # 1
 # []

 a.foo 1, 2 ,3 ,4
 # 1
 # [2,3,4]

...それらのすべて

 class Bar
   define_method(:foo) do |variable1, variable2,*arg, &block|  
     p  variable1     
     p  variable2
     p  arg
     p  block.inspect                                                                              
   end   
 end
 a = Bar.new      
 a.foo :one, 'two', :three, 4, 5 do
   'six'
 end

更新

Ruby 2.0では、ダブルスプラット**(2つ星)が導入されましたが、これは( I quote )です:

Ruby 2.0はキーワード引数を導入し、**は*のように機能しますが、キーワード引数用です。キーと値のペアを含むハッシュを返します。

...そしてもちろん、defineメソッドでも使用できます:)

 class Bar 
   define_method(:foo) do |variable1, variable2,*arg,**options, &block|
     p  variable1
     p  variable2
     p  arg
     p  options
     p  block.inspect
   end 
 end 
 a = Bar.new
 a.foo :one, 'two', :three, 4, 5, Ruby: 'is awesome', foo: :bar do
   'six'
 end
# :one
# "two"
# [:three, 4, 5]
# {:Ruby=>"is awesome", :foo=>:bar}

名前付き属性の例:

 class Bar
   define_method(:foo) do |variable1, color: 'blue', **other_options, &block|
     p  variable1
     p  color
     p  other_options
     p  block.inspect
   end
 end
 a = Bar.new
 a.foo :one, color: 'red', Ruby: 'is awesome', foo: :bar do
   'six'
 end
# :one
# "red"
# {:Ruby=>"is awesome", :foo=>:bar}

キーワード引数、スプラット、ダブルスプラットを1つにまとめた例を作成しようとしていました。

 define_method(:foo) do |variable1, variable2,*arg, i_will_not: 'work', **options, &block|
    # ...

または

 define_method(:foo) do |variable1, variable2, i_will_not: 'work', *arg, **options, &block|
    # ...

...しかし、これは機能しません。制限があるようです。考えてみると、splat演算子は「残りのすべての引数をキャプチャ」し、double splatは「残りのすべてのキーワード引数をキャプチャ」しているため、それらを混合すると予想されるロジックが壊れます。 (この点を証明するための参照はありません!)

2018年8月更新:

概要記事: https://blog.eq8.eu/til/metaprogramming-Ruby-examples.html

84
equivalent8

Kevin Connerの答えに加えて、ブロック引数はメソッド引数と同じセマンティクスをサポートしていません。デフォルト引数またはブロック引数を定義することはできません。

これは、Ruby 1.9で修正され、メソッド引数のセマンティクスを完全にサポートする新しい「stabby lambda」構文が追加されました。

例:

# Works
def meth(default = :foo, *splat, &block) puts 'Bar'; end

# Doesn't work
define_method :meth { |default = :foo, *splat, &block| puts 'Bar' }

# This works in Ruby 1.9 (modulo typos, I don't actually have it installed)
define_method :meth, ->(default = :foo, *splat, &block) { puts 'Bar' }
59
Jörg W Mittag

2.2では、キーワード引数を使用できるようになりました: https://robots.thoughtbot.com/Ruby-2-keyword-arguments

define_method(:method) do |refresh: false|
  ..........
end
7
akostadinov