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?`在定义后不起作用?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)