What Is The Syntax To Use Explicit Class Specialization #409
What is the syntax to use explicit class specialization?
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 OOps Classes - Object Oriented Programming MCQ: Template Class - Quiz No.1.
What is the syntax to use explicit class specialization?
template <int> class myClass<>{ }
template <int> class myClass<int>{ }
template <> class myClass<>{ }
template <> class myClass<int>{ }