C++20中支持的非类型模板参数

C++20中支持将类类型作为非类型模板参数:作为模板参数传入的对象具有const T类型 ,其中T是对象的类型,并且具有静态存储持续时间(static storage duration)。

在C++20之前,非类型模板参数仅限于:左值引用类型、整数类型、指针类型、指向成员类型的指针、枚举类型、std::nullptr_t。在C++20中,它已扩展并支持:浮点类型、字面量类类型(literal class type)。

测试代码如下:

cpp 复制代码
namespace {
template<int N> // int non-type template parameter
struct Array {
	static_assert(N > 0, "N must be greater than 0");
	int data[N];
};

template<float v> // c++20
void print_value()
{
	static_assert(v < 0, "v must be less than 0");
	std::cout << "v: " << v << std::endl;
}

// literal class type
struct Foo {
	constexpr Foo() {}
	constexpr Foo(int value): has_value(true), value(value) {}

	const int value{};
	const bool has_value{ false };
};

template <Foo f> // c++20
void print_foo() {
	if constexpr (f.has_value)
		std::cout << "value: " << f.value << std::endl;
	else
		std::cout << "no value" << std::endl;
}

} // namespace

int test_template_20()
{
	Array<5> arr;
	arr.data[3] = {6};
	std::cout << "arr[3]: " << arr.data[3] << std::endl;

	print_value<-1.1f>();

	print_foo < Foo{ 66 } > ();
	print_foo < Foo{} > ();

	return 0;
}

执行结果如下图所示:

GitHubhttps://github.com/fengbingchun/Messy_Test

相关推荐
程序猿阿伟21 小时前
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
c++20
羊小猪~~7 天前
C/C++语言基础--initializer_list表达式、tuple元组、pair对组简介
c语言·开发语言·c++·vscode·list·c++20·visual studio
lexusv8ls600h9 天前
探索 C++20:C++ 的新纪元
c++·c++20
扣得君9 天前
C++20 Coroutine Echo Server
运维·服务器·c++20
lexusv8ls600h9 天前
C++20 中最优雅的那个小特性 - Ranges
c++·c++20
不爱学英文的码字机器9 天前
C++20新特性详解
算法·c++20
年轻的古尔丹10 天前
【C++ 20进阶(2):属性 Attribute】
c++20·属性·新特性·c++20新特性·c++属性
一只小松许️10 天前
C++20协程详解
开发语言·php·c++20
sun00770015 天前
MISRA C++ 2023 编码标准&规范
c++20
飞翔的薄荷18 天前
C++20 时间转本地时间,时间转字符串以及字符串转时间的方法
算法·c++20