Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-06-22から1日間の記事一覧

Ruby | Method#arity

概要 Method#arity -> Fixnum 詳細 メソッドが受け付ける引数の数を返却。 ただし、メソッドが可変長引数を取る場合は負の数を返却します。 サンプルコード require 'tbpgr_utils' class Hoge def hoge1;end def hoge2(a);end def hoge3(a, b);end def hoge4…