Categories
October Surprise 2024

Constant properties of classes: Inside header or cpp file …

I strongly suggest that you define them in the header inside the class as constexpr inline static int my_constant_member = 42; Otherwise you can define them out of class in a cpp file, but its more work, less maintainable, less readable and quite possible less performant as the value is opaque to the user of the class.