Modernes C++ programmieren

Okt 23, 2024

lst-0721-book.cpp

// https://godbolt.org/z/jGx51caTj 
#include <vector>
#include <iostream>
void printAndMore(const std::vector<int>& data) { // by-const-ref
    std::cout << data[0] << std::endl;
    data[0] = 666;  //                                          (ERR)  geht nicht, weil 'const int&'
}
int main() {
    std::vector zahlen {1,2,3};
    printAndMore(zahlen);
}