नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
explicit specialization; 'template' has already been instantiated
Remarks
A specialization of the primary template occurs before the explicit specialization.
Example
The following example generates C2908:
// C2908.cpp
// compile with: /c
template<class T> class X {};
void f() {
X<int> x; //specialization and instantiation
//of X<int>
}
template<> class X<int> {} // C2908, explicit specialization