Is it possible to have optional template parameter in C++ , for example
template < class T, class U, class V> class Test { };
Here I
You can have default template arguments, which are sufficient for your purposes:
template class Test { };
Now the following work:
Test a; // Test Test b; // Test