UPDATE:関数呼び出しのオーバーヘッド、使用の構造体を節約するために
#include <type_traits>
template<class T>
void test() {
if (std::is_fundamental<T>::value) {
// ...
} else {
// ...
}
}
// Generic: Not primitive
template<class T>
bool isPrimitiveType() {
return false;
}
// Now, you have to create specializations for **all** primitive types
template<>
bool isPrimitiveType<int>() {
return true;
}
// TODO: bool, double, char, ....
// Usage:
template<class T>
void test() {
if (isPrimitiveType<T>()) {
std::cout << "Primitive" << std::endl;
} else {
std::cout << "Not primitive" << std::endl;
}
}
:C++ 11ので、標準ライブラリからis_fundamental
テンプレートを使用
template<class T>
struct IsPrimitiveType {
enum { VALUE = 0 };
};
template<>
struct IsPrimitiveType<int> {
enum { VALUE = 1 };
};
// ...
template<class T>
void test() {
if (IsPrimitiveType<T>::VALUE) {
// ...
} else {
// ...
}
}
他の人が指摘しているように、時間を節約することができます。あなた自身でそれを実装し、全く同じように見えるBoost Type Traits Libraryからis_fundamentalを使用してください。
逆も存在します: 'std :: is_class'https://stackoverflow.com/questions/11287043/is-there-a-way-to-specialize-a-template-to-target-primitives –