• Navigation überspringen
  • Zur Navigation
  • Zum Seitenende
Organisationsmenü öffnen Organisationsmenü schließen
Friedrich-Alexander-Universität Lehrstuhl für Informatik 4 (Systemsoftware)
  • FAUZur zentralen FAU Website
  1. Friedrich-Alexander-Universität
  2. Technische Fakultät
  3. Department Informatik
Suche öffnen
  • English
  • Campo
  • StudOn
  • FAUdir
  • Stellenangebote
  • Lageplan
  • Hilfe im Notfall
  1. Friedrich-Alexander-Universität
  2. Technische Fakultät
  3. Department Informatik
Friedrich-Alexander-Universität Lehrstuhl für Informatik 4 (Systemsoftware)
Menu Menu schließen
  • Lehrstuhl
    • Team
    • Aktuelles
    • Kontakt und Anfahrt
    • Leitbild
    • 50-jähriges Jubiläum
    Portal Lehrstuhl
  • Forschung
    • Forschungsbereiche
      • Betriebssysteme
      • Confidential Computing
      • Embedded Systems Software
      • Verteilte Systeme
    • Projekte
      • AIMBOS
      • BALu
      • BFT2Chain
      • DOSS
      • Mirador
      • NEON
      • PAVE
      • ResPECT
      • Watwa
    • Projektkampagnen
      • maRE
    • Seminar
      • Systemsoftware
    Portal Forschung
  • Publikationen
  • Lehre
    • Sommersemester 2025
      • Applied Software Architecture
      • Ausgewählte Kapitel der Systemsoftware
      • Betriebssystemtechnik
      • Projekt angewandte Systemsoftwaretechnik
      • System-Level Programming
      • Systemnahe Programmierung in C
      • Systemprogrammierung 1
      • Verteilte Systeme
    • Wintersemester 2025/26
      • Systemprogrammierung 2
      • Betriebssysteme
      • Middleware – Cloud Computing
      • Echtzeitsysteme
      • Virtuelle Maschinen
      • Web-basierte Systeme
      • Projekt angewandte Systemsoftwaretechnik
      • Aktuelle Entwicklung in Verteilten und Objektorientierten Betriebssystemen (für Bachelor-/Masterarbeit)
    Portal Lehre
  • Examensarbeiten
  1. Startseite
  2. Extern

Extern

Bereichsnavigation: Lehre
  • Betriebssysteme

    Aufgabe 0: C++ Streams

    Public Member Functions | List of all members
    ConsoleOut Class Reference

    Write text on console (STDOUT) More...

    #include <test-stream/console_out.h>

    + Inheritance diagram for ConsoleOut:
    [legend]
    + Collaboration diagram for ConsoleOut:
    [legend]

    Public Member Functions

     ConsoleOut ()
     Constructor. More...
     
    virtual void flush () override
     Output the string on the screen. More...
     
    - Public Member Functions inherited from OutputStream
     OutputStream ()
     Default constructor. Initial number system is decimal. More...
     
    virtual ~OutputStream ()
     Destructor.
     
    virtual void flush ()=0
     Clears the buffer. More...
     
    OutputStream & operator<< (char c)
     Print a single character. More...
     
    OutputStream & operator<< (unsigned char c)
     Print a single character. More...
     
    OutputStream & operator<< (const char *string)
     Printing a null-terminated string. More...
     
    OutputStream & operator<< (bool b)
     Print a boolean value. More...
     
    OutputStream & operator<< (short ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (unsigned short ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (int ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (unsigned int ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (long ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (unsigned long ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (long long ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (unsigned long long ival)
     Print an integral number in radix base More...
     
    OutputStream & operator<< (const void *ptr)
     Print a pointer as hexadecimal number. More...
     
    OutputStream & operator<< (OutputStream &(*f)(OutputStream &))
     Calls one of the manipulator functions. More...
     
    - Public Member Functions inherited from Stringbuffer
    virtual ~Stringbuffer ()
     Destructor (nothing to do here)
     

    Additional Inherited Members

    - Public Attributes inherited from OutputStream
    int base
     Number system used for printing integral numbers (one of 2, 8, 10, or 16)
     
    - Protected Member Functions inherited from Stringbuffer
     Stringbuffer ()
     Constructor; Marks the buffer as empty. More...
     
    void put (char c)
     Inserts a character into the buffer. More...
     
    virtual void flush ()=0
     Flush the buffer contents. More...
     
    - Protected Attributes inherited from Stringbuffer
    char buffer [80]
     buffer containing characters that will be printed upon flush()
     
    long unsigned pos
     current position in the buffer
     

    Detailed Description

    Write text on console (STDOUT)

    This class allows writing to the console similar to std::cout from the standard C++ library. The class is derived from OutputStream.

    Constructor & Destructor Documentation

    ConsoleOut::ConsoleOut ( )

    Constructor.

    Todo:
    Implement constructor

    Member Function Documentation

    void ConsoleOut::flush ( )
    overridevirtual

    Output the string on the screen.

    The implementation should solely use putchar()

    Todo:
    Implement virtual method

    Implements OutputStream.


    The documentation for this class was generated from the following files:
    • test-stream/console_out.h
    • test-stream/console_out.cc
    Friedrich-Alexander-Universität
    Erlangen-Nürnberg

    Schlossplatz 4
    91054 Erlangen
    • Impressum
    • Datenschutz
    • Barrierefreiheit
    • Facebook
    • RSS Feed
    • Xing
    Nach oben