¿Es legítimo el siguiente código?
template <int N>
class foo {
public:
constexpr foo()
{
for (int i = 0; i < N; ++i) {
v_[i] = i;
}
}
private:
int v_[N];
};
constexpr foo<5> bar;
Clang lo acepta, pero GCC y MSVC lo rechazan.
El error de GCC es:
main.cpp:15:18: error: 'constexpr foo<N>::foo() [with int N = 5]' called in a constant expression
15 | constexpr foo<5> bar;
| ^~~
main.cpp:4:15: note: 'constexpr foo<N>::foo() [with int N = 5]' is not usable as a 'constexpr' function because:
4 | constexpr foo()
| ^~~
main.cpp:4:15: error: member 'foo<5>::v_' must be initialized by mem-initializer in 'constexpr' constructor
main.cpp:12:9: note: declared here
12 | int v_[N];
| ^~
Si este tipo de código estuviera bien, podría cortar bastantes usos de index_sequence
s.
_v
debería inicializarse en la lista de inicialización, hasta C ++ 17. Quizás haya cambiado algo en C ++ 20.
int
miembro nunca tendrán un comportamiento indefinido ". Me pregunto si GCC no hace eso es compatible, o al revés ...