C++ 模板元编程是一种在编译时执行计算的技术,它利用 C++ 模板系统来实现。模板元编程可以用于生成编译时常量、类型选择和算法优化等。为了在模板元编程中区分不同的类型或值,我们可以使用以下方法:
#include <type_traits>
template <typename T, typename std::enable_if<std::is_integral<T>::value, int>::type = 0>
void foo(T t) {
// 这个函数只接受整数类型
}
template <typename T, typename std::enable_if<std::is_floating_point<T>::value, int>::type = 0>
void foo(T t) {
// 这个函数只接受浮点类型
}
#include <iostream>
template <typename T>
struct Foo {
static void print() {
std::cout << "通用实现" << std::endl;
}
};
template <>
struct Foo<int> {
static void print() {
std::cout << "整数特化" << std::endl;
}
};
template <>
struct Foo<double> {
static void print() {
std::cout << "浮点数特化" << std::endl;
}
};
int main() {
Foo<int>::print(); // 输出 "整数特化"
Foo<double>::print(); // 输出 "浮点数特化"
return 0;
}
std::is_same
、std::is_integral
、std::is_floating_point
等类型萃取可以用来在编译时检查类型的属性。我们可以使用这些类型萃取来区分不同的类型。例如:#include <iostream>
#include <type_traits>
template <typename T>
void foo() {
if constexpr (std::is_same_v<T, int>) {
std::cout << "整数类型" << std::endl;
} else if constexpr (std::is_same_v<T, double>) {
std::cout << "浮点数类型" << std::endl;
} else {
std::cout << "其他类型" << std::endl;
}
}
int main() {
foo<int>(); // 输出 "整数类型"
foo<double>(); // 输出 "浮点数类型"
foo<std::string>(); // 输出 "其他类型"
return 0;
}
通过使用这些方法,我们可以在 C++ 模板元编程中区分不同的类型或值。