Here I have an example class:
template<typename T, unsigned int SIZE> class MyClass { public: MyClass(); ~MyClass(); protected: T _data[SIZE]; }; template<typename T, unsigned int SIZE> MyClass<T, SIZE>::MyClass() :
What is the correct C ++ 2011 syntax for initializing an entire array to 0 in the default constructor?
Thank you very much.
source share