Ruby调用者实验

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ruby调用者实验相关的知识,希望对你有一定的参考价值。

  1. class Kung
  2. mstr = %-
  3. def foo
  4. puts 'Hello World from Kung.foo'
  5. puts caller(0).inspect
  6. end
  7. -
  8. module_eval mstr
  9. end
  10.  
  11. Kung.new.foo
  12.  
  13.  
  14.  
  15. class Monkey
  16. line, mstr = __LINE__, %-
  17. def see
  18. puts 'Hello World from Monkey.see'
  19. puts caller(0)
  20. end
  21. -
  22. module_eval mstr, __FILE__, line
  23. end
  24.  
  25. Monkey.new.see
  26.  
  27.  
  28. class Monkey
  29. module_eval(<<-EOS, __FILE__, __LINE__)
  30. def see
  31. puts 'Hello World from Monkey.see'
  32. puts caller(0)
  33. end
  34. EOS
  35. end
  36.  
  37. Monkey.new.see

以上是关于Ruby调用者实验的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ruby​​ 中找到调用者类?

前DB2实验室专家眼中的DB2性能调优

如何在新线程上运行任务并立即返回给调用者?

火山引擎 DataTester 上线全新 MAB 智能调优实验

ruby 实验室同步

ruby中愚蠢的哈希实验