60件ヒット
[1-60件を表示]
(0.064秒)
別のキーワード
キーワード
- bmcall (12)
-
method
_ call (12) -
rb
_ call (12) - umcall (12)
-
umethod
_ call (12)
検索結果
先頭5件
- static VALUE method
_ call(int argc , VALUE *argv , VALUE method) - static VALUE umethod
_ call(int argc , VALUE *argv , VALUE method) - static VALUE bmcall(VALUE args
, VALUE method) - static VALUE umcall(VALUE args
, VALUE method) - static VALUE rb
_ call(VALUE klass , VALUE recv , ID mid , int argc , const VALUE *argv , int scope)
-
static VALUE method
_ call(int argc , VALUE *argv , VALUE method) (12301.0) -
-
static VALUE umethod
_ call(int argc , VALUE *argv , VALUE method) (12301.0) -
-
static VALUE bmcall(VALUE args
, VALUE method) (6201.0) -
-
static VALUE umcall(VALUE args
, VALUE method) (6201.0) -
-
static VALUE rb
_ call(VALUE klass , VALUE recv , ID mid , int argc , const VALUE *argv , int scope) (6119.0) -
クラス klass に定義されたメソッド mid を呼び出します。 レシーバは recv で、引数は長さ argc の配列 argv で渡します。
...す。
scope は以下のように呼び出しの形式を示します。
: 0
obj.method() (private/protected メソッドを呼べない)
: 1
method() (private/protected メソッドも呼べる)
: 2
method_or_lvar (1とはエラーメッセージが変わる)
: 3
super...