//该程序的运行结果: /******************************************************************************* char :[Is kind of Template] int :[Is kind of Template] short :[Is kind of Template] long :[Is kind of Template] float :[Is kind of Template] double:[Is kind of Template] std::string:[Is kind of Template] std::complex<float> :[Is kind of std::complex] std::complex<double>:[Is kind of std::complex] *******************************************************************************/
#endif #ifdef CODE3//g++ -DCODE3 thisfile.cpp #include <iostream> #include <string> #include <complex> //某个模板类 template <class T>struct Template{}; //另一个模板类 template <class T>struct AnotherTemplate{}; //某个模板类的派生类,可以有无数种 struct Derived1:public Template<char >{}; struct Derived2:public Template<int >{}; struct Derived3:public Template<short >{}; struct Derived4:public Template<long >{}; struct Derived5:public Template<float >{}; struct Derived6:public Template<double>{}; struct Derived7:public Template<std::string>{}; struct Derived8:public Template<std::complex<float > >{}; struct Derived9:public Template<std::complex<double> >{}; //考虑到这种情况必须采用一种映射关系,将所有的Template模板类的派生类都映射成为 //Template类型,注意哦,这里是映射而不是转型哦!映射到了Template类型之后再采用 //比较这个类型和参数类型的尺寸的方法来实现识别功能,具体代码如下: template <class T,template<class>class TemplateType> class is_kind_of { //定义一个类型来表示任意类型 typedefchar AnyType; //定义一个类型来表示指定的类型 class SpecifiedType {char unnamed[2];}; //完成任意类型映射成为AnyType的功能 static AnyType Map(...); //完成指定模板类型映射成为SpecifiedType的功能 //这里还使用了函数传递参数的时候隐式转型的能力 template<class PT> static SpecifiedType Map(TemplateType<PT>); public: //通过计算映射之后的两个类型的尺寸来识别类型 enum{ //传递参数的时候让编译器来自动选择合适的Map函数以完成类型映射功 //能 yes=(sizeof(Map(T()))==sizeof(SpecifiedType)), no =(sizeof(Map(T()))==sizeof(AnyType)) }; }; //下面是测试代码 int main() { std::cout << "Derived1 is kind of Template? " << is_kind_of<Derived1,Template>::yes << std::endl; std::cout << "Derived2 is kind of Template? " << is_kind_of<Derived2,Template>::yes << std::endl; std::cout << "Derived3 is kind of Template? " << is_kind_of<Derived3,Template>::yes << std::endl; std::cout << "Derived4 is kind of Template? " << is_kind_of<Derived4,Template>::yes << std::endl; std::cout << "Derived5 is kind of Template? " << is_kind_of<Derived5,Template>::yes << std::endl; std::cout << "Derived6 is kind of Template? " << is_kind_of<Derived6,Template>::yes << std::endl; std::cout << "Derived7 is kind of Template? " << is_kind_of<Derived7,Template>::yes << std::endl; std::cout << "Derived8 is kind of Template? " << is_kind_of<Derived8,Template>::yes << std::endl; std::cout << "Derived9 is kind of Template? " << is_kind_of<Derived9,Template>::yes << std::endl;
std::cout << "Derived1 is kind of AnotherTemplate? " << is_kind_of<Derived1,AnotherTemplate>::yes << std::endl; std::cout << "Derived2 is kind of AnotherTemplate? " << is_kind_of<Derived2,AnotherTemplate>::yes << std::endl; std::cout << "Derived3 is kind of AnotherTemplate? " << is_kind_of<Derived3,AnotherTemplate>::yes << std::endl; std::cout << "Derived4 is kind of AnotherTemplate? " << is_kind_of<Derived4,AnotherTemplate>::yes << std::endl; std::cout << "Derived5 is kind of AnotherTemplate? " << is_kind_of<Derived5,AnotherTemplate>::yes << std::endl; std::cout << "Derived6 is kind of AnotherTemplate? " << is_kind_of<Derived6,AnotherTemplate>::yes << std::endl; std::cout << "Derived7 is kind of AnotherTemplate? " << is_kind_of<Derived7,AnotherTemplate>::yes << std::endl; std::cout << "Derived8 is kind of AnotherTemplate? " << is_kind_of<Derived8,AnotherTemplate>::yes << std::endl; std::cout << "Derived9 is kind of AnotherTemplate? " << is_kind_of<Derived9,AnotherTemplate>::yes << std::endl; return 0; } #endif//CODE3
//该程序的运行结果如下: /******************************************************************************* Derived1 is kind of Template? 1 Derived2 is kind of Template? 1 Derived3 is kind of Template? 1 Derived4 is kind of Template? 1 Derived5 is kind of Template? 1 Derived6 is kind of Template? 1 Derived7 is kind of Template? 1 Derived8 is kind of Template? 1 Derived9 is kind of Template? 1 Derived1 is kind of AnotherTemplate? 0 Derived2 is kind of AnotherTemplate? 0 Derived3 is kind of AnotherTemplate? 0 Derived4 is kind of AnotherTemplate? 0 Derived5 is kind of AnotherTemplate? 0 Derived6 is kind of AnotherTemplate? 0 Derived7 is kind of AnotherTemplate? 0 Derived8 is kind of AnotherTemplate? 0 Derived9 is kind of AnotherTemplate? 0 *******************************************************************************/