consteval
是 C++20 引入的一个新关键字,它用于指示一个函数必须在编译时进行计算。换句话说,consteval
函数会产生编译时常量。要在 C++ 中使用 consteval
函数,请按照以下步骤操作:
consteval
是 C++20 标准的一部分,因此你需要一个支持 C++20 的编译器(例如 GCC 10 或更高版本、Clang 10 或更高版本、MSVC v19.25 或更高版本)。-std=c++20
。consteval int square(int x) {
return x * x;
}
consteval
函数在编译时计算结果,因此可以将其结果用作模板参数或初始化 constexpr
变量。template<int N>
struct Squared {
static constexpr int value = N;
};
constexpr int x = square(3); // 在编译时计算
Squared<square(4)> s; // 在编译时计算并用作模板参数
consteval
函数必须满足一些额外的限制,例如它们不能有循环、递归调用等。此外,它们只能调用其他 consteval
函数。下面是一个完整的示例代码:
#include<iostream>
consteval int square(int x) {
return x * x;
}
template<int N>
struct Squared {
static constexpr int value = N;
};
int main() {
constexpr int x = square(3);
std::cout << "The square of 3 is: " << x << std::endl;
Squared<square(4)> s;
std::cout << "The square of 4 is: " << s.value<< std::endl;
return 0;
}
在支持 C++20 的编译器上编译和运行此代码,你将看到输出:
The square of 3 is: 9
The square of 4 is: 16