here is an exemple :
template< typename T >class A {public : A(void) { this->_tab = ???[x]; }private:T* _tab;};
I would like to initialize my array with x elements but how to get the type of my template (i tried but it's not working ).