세 가지 방법 : send
/ call
/ eval
-및 벤치 마크
일반적인 호출 (참조 용) :
s= "hi man"
s.length #=> 6
사용 send
s.send(:length) #=> 6
사용 call
method_object = s.method(:length)
p method_object.call #=> 6
사용 eval
eval "s.length" #=> 6
벤치 마크
require "benchmark"
test = "hi man"
m = test.method(:length)
n = 100000
Benchmark.bmbm {|x|
x.report("call") { n.times { m.call } }
x.report("send") { n.times { test.send(:length) } }
x.report("eval") { n.times { eval "test.length" } }
}
보시다시피, 메소드 객체를 인스턴스화하는 것은 메소드를 호출하는 가장 빠른 동적 방법이며, eval을 사용하는 속도도 느립니다.
#######################################
##### The results
#######################################
#Rehearsal ----------------------------------------
#call 0.050000 0.020000 0.070000 ( 0.077915)
#send 0.080000 0.000000 0.080000 ( 0.086071)
#eval 0.360000 0.040000 0.400000 ( 0.405647)
#------------------------------- total: 0.550000sec
# user system total real
#call 0.050000 0.020000 0.070000 ( 0.072041)
#send 0.070000 0.000000 0.070000 ( 0.077674)
#eval 0.370000 0.020000 0.390000 ( 0.399442)
크레딧은이 블로그 게시물 로 이동 하여 세 가지 방법에 대해 좀 더 자세히 설명하고 방법이 있는지 확인하는 방법도 보여줍니다.