C++ 模板元編程是一種在編譯時(shí)執(zhí)行計(jì)算的技術(shù),它利用 C++ 模板系統(tǒng)來實(shí)現(xiàn)。模板元編程可以用于生成編譯時(shí)常量、類型選擇和算法優(yōu)化等。為了在模板元編程中區(qū)分不同的類型或值,我們可以使用以下方法:
#include <type_traits>
template <typename T, typename std::enable_if<std::is_integral<T>::value, int>::type = 0>
void foo(T t) {
// 這個(gè)函數(shù)只接受整數(shù)類型
}
template <typename T, typename std::enable_if<std::is_floating_point<T>::value, int>::type = 0>
void foo(T t) {
// 這個(gè)函數(shù)只接受浮點(diǎn)類型
}
#include <iostream>
template <typename T>
struct Foo {
static void print() {
std::cout << "通用實(shí)現(xiàn)" << std::endl;
}
};
template <>
struct Foo<int> {
static void print() {
std::cout << "整數(shù)特化" << std::endl;
}
};
template <>
struct Foo<double> {
static void print() {
std::cout << "浮點(diǎn)數(shù)特化" << std::endl;
}
};
int main() {
Foo<int>::print(); // 輸出 "整數(shù)特化"
Foo<double>::print(); // 輸出 "浮點(diǎn)數(shù)特化"
return 0;
}
std::is_same
、std::is_integral
、std::is_floating_point
等類型萃取可以用來在編譯時(shí)檢查類型的屬性。我們可以使用這些類型萃取來區(qū)分不同的類型。例如:#include <iostream>
#include <type_traits>
template <typename T>
void foo() {
if constexpr (std::is_same_v<T, int>) {
std::cout << "整數(shù)類型" << std::endl;
} else if constexpr (std::is_same_v<T, double>) {
std::cout << "浮點(diǎn)數(shù)類型" << std::endl;
} else {
std::cout << "其他類型" << std::endl;
}
}
int main() {
foo<int>(); // 輸出 "整數(shù)類型"
foo<double>(); // 輸出 "浮點(diǎn)數(shù)類型"
foo<std::string>(); // 輸出 "其他類型"
return 0;
}
通過使用這些方法,我們可以在 C++ 模板元編程中區(qū)分不同的類型或值。