Modernes C++ programmieren

Okt 23, 2024

lst-0408-godb.cpp

//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/jfocr7qf1 
//… Basis2 und Wert2 wie gehabt 
void ausgabe(Basis2 x) {        // Übergabe als Wert
    x.print(cout);
}
int main() {
    Basis2 ba2{}; ausgabe(ba2); // gibt 8 aus
    Wert2 we2{}; ausgabe(we2);  // gibt auch 8 aus
}