当前位置:  开发笔记 > 编程语言 > 正文

识别模板中的基元类型

如何解决《识别模板中的基元类型》经验,为你挑选了3个好方法。

我正在寻找一种方法来识别模板类定义中的基元类型.

我的意思是,有这个课:

template
class A{
void doWork(){
   if(T isPrimitiveType())
     doSomething();
   else
     doSomethingElse(); 
}
private:
T *t; 
};

有没有办法"实现"isPrimitiveType().



1> Ferdinand Be..:

更新:从C++ 11开始,使用is_fundamental标准库中的模板:

#include 

template
void test() {
    if (std::is_fundamental::value) {
        // ...
    } else {
        // ...
    }
}

// Generic: Not primitive
template
bool isPrimitiveType() {
    return false;
}

// Now, you have to create specializations for **all** primitive types

template<>
bool isPrimitiveType() {
    return true;
}

// TODO: bool, double, char, ....

// Usage:
template
void test() {
    if (isPrimitiveType()) {
        std::cout << "Primitive" << std::endl;
    } else {
        std::cout << "Not primitive" << std::endl;
    }
 }

为了保存函数调用开销,请使用结构:

template
struct IsPrimitiveType {
    enum { VALUE = 0 };
};

template<>
struct IsPrimitiveType {
    enum { VALUE = 1 };
};

// ...

template
void test() {
    if (IsPrimitiveType::VALUE) {
        // ...
    } else {
        // ...
    }
}

正如其他人所指出的那样,你可以节省你自己实现它的时间,并使用Boost Type Traits Library中的is_fundamental,这似乎完全相同.



2> Anton Gogole..:

Boost TypeTraits有很多东西.



3> Rubens..:

我想这可以很好地完成这项工作,没有多个专业化:

# include 
# include 

template 
inline bool isPrimitiveType(const T& data) {
    return std::is_fundamental::value;
}

struct Foo {
    int x;
    char y;
    unsigned long long z;
};


int main() {

    Foo data;

    std::cout << "isPrimitiveType(Foo): " << std::boolalpha
        << isPrimitiveType(data) << std::endl;
    std::cout << "isPrimitiveType(int): " << std::boolalpha
        << isPrimitiveType(data.x) << std::endl;
    std::cout << "isPrimitiveType(char): " << std::boolalpha
        << isPrimitiveType(data.y) << std::endl;
    std::cout << "isPrimitiveType(unsigned long long): " << std::boolalpha
        << isPrimitiveType(data.z) << std::endl;

}

输出是:

isPrimitiveType(Foo): false  
isPrimitiveType(int): true  
isPrimitiveType(char): true  
isPrimitiveType(unsigned long long): true

推荐阅读
乐韵答题
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有