5
বাহ্যিক টেম্পলেট ব্যবহার করা (সি ++ 11)
চিত্র 1: ফাংশন টেম্পলেট TemplHeader.h template<typename T> void f(); TemplCpp.cpp template<typename T> void f(){ //... } //explicit instantation template void f<T>(); Main.cpp #include "TemplHeader.h" extern template void f<T>(); //is this correct? int main() { f<char>(); return 0; } এটি কি ব্যবহারের সঠিক উপায় extern template, বা আমি চিত্র 2 এর …