Modernes C++ programmieren

Okt 23, 2024

lst-0350-godb.cpp

//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/ba9rv6P51 
struct Data {
    static constexpr size_t SPAET; //                 (ERR)  klappt nicht ohne direkte Initialisierung
    static constexpr size_t FRUEH = 10;
};
constexpr size_t Data::SPAET = 10; //                 (ERR)  bei constexpr geht Definition nicht wie bei const