C++中如何判断template类型

分类:软件开发| 发布:佚名| 查看:629 | 发表时间:2014/6/16

在C++中,使用template,有时候可能会需要得到当前所使用的类型.

本文中使用两种办法来。

TT类为使用模板的类,

TT.h

1#ifndef _TT_H
2#define _TT_H
3#include "stdio.h"
4template <class T>
5class TT{
6public:
7    void printType();
8    void printType(T);
9};

 方法1:

01template<>
02void TT<int>::printType(){
03    printf("int/n");
04}
05template<>
06void TT<char>::printType(){
07    printf("char/n");
08}
09template<class T>
10void TT<T>::printType(){
11    printf("other type/n");
12}

 方法1结束。

方法2:

1template<class T>
2void TT<T>::printType(T t){//判断t是不是int类型的
3    printf("%d/n",typeid(t).name() == typeid(1).name());
4}

方法2结束。

01#endif
02main.c
03#include "TT.h"
04int main(){
05    TT<int> t1;
06    TT<char> t2;
07    TT<double> t3;
08    t1.printType();
09    t2.printType();
10    t3.printType();
11    int a = 1;
12    char b = 'b';
13    double c = 1.1;
14    t1.printType(a);
15    t2.printType(b);
16    t3.printType(c);
17    return 0;
18}

 

最后的结果为:

1int
2char
3other type
41
50
60
365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/software-dev/1214.html