Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
explicit instantiation; 'class' is not a template-class specialization
Remarks
You cannot explicitly instantiate a nontemplated class.
Example
The following example generates C2946.
// C2946.cpp
class C {};
template C; // C2946
int main() {}