Why does Ruby use respond_to? instead of responds_to?

前端 未结 2 784
礼貌的吻别
礼貌的吻别 2021-02-06 21:04

I\'m curious why Ruby\'s introspection related method to check if an object responds to a method is respond_to? instead of responds_to?

It alwa

相关标签:
2条回答
  • 2021-02-06 21:32

    How do you know that the receiver is always third person singular? It is possible that the receiver be I, we, you, or they, or some other thing that represents plurality. In that case, will you still say that responds_to? is more natural than respond_to?? In order to preserve generality, it is better to name a method in a form as general as possible. Rather than naming a method in third person singular, it makes more sense to name it in the default, to-less infinitive form, which is also used in dictionaries.

    0 讨论(0)
  • 2021-02-06 21:39

    Matz prefers second person singular or third person plural:

    "responds_to?" probably makes more sense to English speakers than "respond_to?".

    Maybe. But I'm Japanese. Ruby is not English. It's the basic naming rule to avoid third person singular form in the standard libraries.

      you = Human.new
      if you.respond_to?(:knock)
        ...
      end
    
    0 讨论(0)
提交回复
热议问题