60件ヒット
[1-60件を表示]
(0.055秒)
ライブラリ
- ビルトイン (60)
キーワード
- method (12)
-
public
_ instance _ method (12) -
public
_ method (12) -
singleton
_ method (12)
検索結果
先頭5件
-
Module
# instance _ method(name) -> UnboundMethod (18256.0) -
self のインスタンスメソッド name をオブジェクト化した UnboundMethod を返します。
...返します。
@param name メソッド名を Symbol または String で指定します。
@raise NameError self に存在しないメソッドを指定した場合に発生します。
@see Module#public_instance_method, Object#method
//emlist[例][ruby]{
class Interpreter
def do_a() print......"a" => instance_method(:do_a),
"d" => instance_method(:do_d),
"e" => instance_method(:do_e),
"v" => instance_method(:do_v)
}
def interpret(string)
string.each_char {|b| Dispatcher[b].bind(self).call }
end
end
interpreter = Interpreter.new
interpreter.interpret('dave')
# => Hel... -
Object
# method(name) -> Method (9131.0) -
オブジェクトのメソッド name をオブジェクト化した Method オブジェクトを返します。
...はStringで指定します。
@raise NameError 定義されていないメソッド名を引数として与えると発生します。
//emlist[][ruby]{
me = -365.method(:abs)
p me #=> #<Method: Integer#abs>
p me.call #=> 365
//}
@see Module#instance_method, Method, BasicObject#__send__, Object#s......end, Kernel.#eval, Object#singleton_method... -
Object
# public _ method(name) -> Method (9131.0) -
オブジェクトの public メソッド name をオブジェクト化した Method オブジェクトを返します。
...bol または String で指定します。
@raise NameError 定義されていないメソッド名や、
protected メソッド名、 private メソッド名を引数として与えると発生します。
//emlist[][ruby]{
1.public_method(:to_int) #=> #<Method: Integer#to_int>
1.public_met......hod(:p) # method `p' for class `Integer' is private (NameError)
//}
@see Object#method,Object#public_send,Module#public_instance_method... -
Object
# singleton _ method(name) -> Method (9131.0) -
オブジェクトの特異メソッド name をオブジェクト化した Method オブ ジェクトを返します。
...特異メソッド name をオブジェクト化した Method オブ
ジェクトを返します。
@param name メソッド名をSymbol またはStringで指定します。
@raise NameError 定義されていないメソッド名を引数として与えると発生します。
//emlist[][ruby]{
c......o.new(99)
def k.hi
"Hi, @iv = #{@iv}"
end
m = k.singleton_method(:hi) # => #<Method: #<Demo:0xf8b0c3c4 @iv=99>.hi>
m.call #=> "Hi, @iv = 99"
m = k.singleton_method(:hello) # => NameError
//}
@see Module#instance_method, Method, BasicObject#__send__, Object#send, Kernel.#eval, Object#method... -
Module
# public _ instance _ method(name) -> UnboundMethod (6250.0) -
self の public インスタンスメソッド name をオブジェクト化した UnboundMethod を返します。
... String で指定します。
@raise NameError 定義されていないメソッド名や、
protected メソッド名、 private メソッド名を引数として与えると発生します。
//emlist[例][ruby]{
Kernel.public_instance_method(:object_id) #=> #<UnboundMethod: Kernel#object......_id>
Kernel.public_instance_method(:p) # method `p' for module `Kernel' is private (NameError)
//}
@see Module#instance_method,Object#public_method...