jszhn

Recent Notes

  • A* algorithm

    Oct 29, 2025

    • ALOHA

      Oct 29, 2025

      • ARP

        Oct 29, 2025

        • Accounting

          Oct 29, 2025

          • Activation function

            Oct 29, 2025

            Home

            ❯

            Stream

            Stream

            May 13, 20241 min read

            Streams are flows of data. C++ abstracts the input and delivery (output, via screen, file, or elsewhere) of data with streams. As streams are objects, they each come with methods for manipulation.

            Common types include:

            • Standard IO
            • File IO
            • Stringstream

            All streams don’t have copy constructors — so for any operator overloading we do, we must return by reference. This is especially important for the << operator.

            IO streams rely on class inheritance.


            Graph View

            Backlinks

            • C++
            • Inheritance
            • Stringstream
            • ECE244 — Programming Fundamentals

            Created with Quartz v4.5.2 © 2025

            • Twitter
            • LinkedIn
            • GitHub