• SpaceNoodle@lemmy.world
    link
    fedilink
    arrow-up
    46
    arrow-down
    2
    ·
    edit-2
    22 hours ago

    If I’m writing C++, I’m usually optimizing for portability over performance, in which case I would prefer std::endl as it would yield the best results regardless of platform; it also keeps the end-of-line character out of other strings, making code just a little cleaner.

    \n is for when I’m done pretending that anything that isn’t Unix-like is OK, and I’m counting the cycles of every branch instruction.

        • Oriel Jutty :hhHHHAAAH:@infosec.exchange
          link
          fedilink
          arrow-up
          9
          ·
          10 hours ago

          The same is true of std::endl. std::endl is simply defined as << '\n' << std::flush; nothing more, nothing less. In all cases where endl gives you a “properly translated” newline, so does \n.

          • zenforyen@feddit.org
            link
            fedilink
            arrow-up
            1
            ·
            6 hours ago

            Yeah it’s an artificial dichotomy based on a popular misconception of what std::endl is and how \n is interpreted.

            Ultimately it does not ask about line endings, but about flushing, which is a completely orthogonal question.

            • AnyOldName3@lemmy.world
              link
              fedilink
              arrow-up
              2
              ·
              5 hours ago

              It’s controlled by whether the stream’s opened in text mode or binary mode. On Unix, they’re the same, but on Windows, text mode has line ending conversion.