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