• @[email protected]
    link
    fedilink
    07 hours ago

    I can’t find it right now, but there is some explanation in “Clean Code” why switches shouldn’t be used all over the place.

    • @djnattyp
      link
      36 hours ago

      Google for “replace conditional with polymorphism”.

      Just checked and it is in “Clean Code” - Chaper 17; Section G23 “Prefer Polymorphism to if/else or switch/case”.

      • @[email protected]
        link
        fedilink
        159 minutes ago

        This is really terrible advice. Sometimes it’s better to do that, but definitely not in the example from this article.

        If anyone says you should always prefer polymorphism to switches they are a bloody idiot.