Ruby的`respond_to?`在定义后不起作用?

Ruby的`respond_to?`在定义后不起作用?,第1张

概述我有一个模块定义了一个方法,如果它尚未定义.这是ActiveRecord属性的情况,因为它们的getter和setter未定义为方法. module B def create_say_hello_if_not_exists puts respond_to?(:say_hello) define_method :say_hello do puts 'hello' 我有一个模块定义了一个方法,如果它尚未定义.这是ActiveRecord属性的情况,因为它们的getter和setter未定义为方法.

module B  def create_say_hello_if_not_exists    puts respond_to?(:say_hello)    define_method :say_hello do      puts 'hello'    end unless respond_to?(:say_hello)  endendclass A  def say_hello    puts 'hi'  end  puts respond_to?(:say_hello,true)  extend B  create_say_hello_if_not_existsendA.new.say_hello

预期的结果是嗨,但ruby打印你好.为什么?

也许与Confused about “respond_to?” method有关

解决方法 试试这个.

module B  def create_say_hello_if_not_exists    puts method_defined?(:say_hello)    define_method :say_hello do      puts 'hello'    end unless method_defined?(:say_hello)  endendclass A  def say_hello    puts 'hi'  end  puts method_defined?( :say_hello )  extend B  create_say_hello_if_not_existsendA.new.say_hello
总结

以上是内存溢出为你收集整理的Ruby的`respond_to?`在定义后不起作用?全部内容,希望文章能够帮你解决Ruby的`respond_to?`在定义后不起作用?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1270510.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存