C++标准模板(STL)- 类型支持 (类型属性,is_bounded_array,is_unbounded_array)

2023-11-06 14:20

本文主要是介绍C++标准模板(STL)- 类型支持 (类型属性,is_bounded_array,is_unbounded_array),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

类型特性

类型特性定义一个编译时基于模板的结构,以查询或修改类型的属性。

试图特化定义于 <type_traits> 头文件的模板导致未定义行为,除了 std::common_type 可依照其所描述特化。

定义于<type_traits>头文件的模板可以用不完整类型实例化,除非另外有指定,尽管通常禁止以不完整类型实例化标准库模板。

类型属性

继承自 std::integral_constant

成员常量

value

[静态]

T 为拥有已知边界的数组类型则为 true ,否则为 false
(公开静态成员常量)
成员函数

operator bool

转换对象为 bool ,返回 value
(公开成员函数)

operator()

(C++14)

返回 value
(公开成员函数)
成员类型
类型定义
value_typebool
typestd::integral_constant<bool, value>

 检查类型是否为有已知边界的数组类型

std::is_bounded_array

template< class T >
struct is_bounded_array;

(C++20 起)

检查 T 是否为拥有已知边界的数组类型。若 T 是有已知边界的数组则提供等于 true 的成员常量 value 。否则 value 等于 false 。

模板形参
T-要检查的类型
辅助变量模板

template< class T >
inline constexpr bool is_bounded_array_v = is_bounded_array<T>::value;

(C++20 起)
可能的实现
template<class T>
struct is_bounded_array: std::false_type {};template<class T, std::size_t N>
struct is_bounded_array<T[N]> : std::true_type {};
调用示例
#include <iostream>
#include <type_traits>namespace std
{
template<class T>
struct is_bounded_array: std::false_type {};template<class T, std::size_t N>
struct is_bounded_array<T[N]> : std::true_type {};
}class A {};int main()
{std::cout << std::boolalpha;std::cout << "std::is_bounded_array<std::string>::value:    "<< std::is_bounded_array<std::string>::value << std::endl;std::cout << "std::is_bounded_array<A>::value:              "<< std::is_bounded_array<A>::value << std::endl;std::cout << "std::is_bounded_array<A[]>::value:            "<< std::is_bounded_array<A[]>::value << std::endl;std::cout << "std::is_bounded_array<A[3]>::value:           "<< std::is_bounded_array<A[3]>::value << std::endl;std::cout << "std::is_bounded_array<float>::value:          "<< std::is_bounded_array<float>::value << std::endl;std::cout << "std::is_bounded_array<int>::value:            "<< std::is_bounded_array<int>::value << std::endl;std::cout << "std::is_bounded_array<int[]>::value:          "<< std::is_bounded_array<int[]>::value << std::endl;std::cout << "std::is_bounded_array<int[3]>::value:         "<< std::is_bounded_array<int[3]>::value << std::endl;return 0;
}
输出

检查类型是否为有未知边界的数组类型

std::is_unbounded_array

template< class T >
struct is_unbounded_array;

(C++20 起)

检查 T 是否为未知边界数组类型。若 T 是有未知边界的数组类型则提供等于 true, 的成员常量 value 。否则 value 等于 false 。

模板形参
T-要检查的类型
辅助变量模板

template< class T >
inline constexpr bool is_unbounded_array_v = is_unbounded_array<T>::value;

(C++20 起)
可能的实现
template<class T>
struct is_unbounded_array: std::false_type {};template<class T>
struct is_unbounded_array<T[]> : std::true_type {};
调用示例
#include <iostream>
#include <type_traits>namespace std
{
template<class T>
struct is_unbounded_array: std::false_type {};template<class T>
struct is_unbounded_array<T[]> : std::true_type {};
}class A {};int main()
{std::cout << std::boolalpha;std::cout << "std::is_unbounded_array<std::string>::value:    "<< std::is_unbounded_array<std::string>::value << std::endl;std::cout << "std::is_unbounded_array<A>::value:              "<< std::is_unbounded_array<A>::value << std::endl;std::cout << "std::is_unbounded_array<A[]>::value:            "<< std::is_unbounded_array<A[]>::value << std::endl;std::cout << "std::is_unbounded_array<A[3]>::value:           "<< std::is_unbounded_array<A[3]>::value << std::endl;std::cout << "std::is_unbounded_array<float>::value:          "<< std::is_unbounded_array<float>::value << std::endl;std::cout << "std::is_unbounded_array<int>::value:            "<< std::is_unbounded_array<int>::value << std::endl;std::cout << "std::is_unbounded_array<int[]>::value:          "<< std::is_unbounded_array<int[]>::value << std::endl;std::cout << "std::is_unbounded_array<int[3]>::value:         "<< std::is_unbounded_array<int[3]>::value << std::endl;return 0;
}
输出

这篇关于C++标准模板(STL)- 类型支持 (类型属性,is_bounded_array,is_unbounded_array)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/357127

相关文章

C++中全局变量和局部变量的区别

《C++中全局变量和局部变量的区别》本文主要介绍了C++中全局变量和局部变量的区别,全局变量和局部变量在作用域和生命周期上有显著的区别,下面就来介绍一下,感兴趣的可以了解一下... 目录一、全局变量定义生命周期存储位置代码示例输出二、局部变量定义生命周期存储位置代码示例输出三、全局变量和局部变量的区别作用域

C++中assign函数的使用

《C++中assign函数的使用》在C++标准模板库中,std::list等容器都提供了assign成员函数,它比操作符更灵活,支持多种初始化方式,下面就来介绍一下assign的用法,具有一定的参考价... 目录​1.assign的基本功能​​语法​2. 具体用法示例​​​(1) 填充n个相同值​​(2)

Linux线程之线程的创建、属性、回收、退出、取消方式

《Linux线程之线程的创建、属性、回收、退出、取消方式》文章总结了线程管理核心知识:线程号唯一、创建方式、属性设置(如分离状态与栈大小)、回收机制(join/detach)、退出方法(返回/pthr... 目录1. 线程号2. 线程的创建3. 线程属性4. 线程的回收5. 线程的退出6. 线程的取消7.

c++ 类成员变量默认初始值的实现

《c++类成员变量默认初始值的实现》本文主要介绍了c++类成员变量默认初始值,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录C++类成员变量初始化c++类的变量的初始化在C++中,如果使用类成员变量时未给定其初始值,那么它将被

C++中NULL与nullptr的区别小结

《C++中NULL与nullptr的区别小结》本文介绍了C++编程中NULL与nullptr的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编... 目录C++98空值——NULLC++11空值——nullptr区别对比示例 C++98空值——NUL

C++ Log4cpp跨平台日志库的使用小结

《C++Log4cpp跨平台日志库的使用小结》Log4cpp是c++类库,本文详细介绍了C++日志库log4cpp的使用方法,及设置日志输出格式和优先级,具有一定的参考价值,感兴趣的可以了解一下... 目录一、介绍1. log4cpp的日志方式2.设置日志输出的格式3. 设置日志的输出优先级二、Window

从入门到精通C++11 <chrono> 库特性

《从入门到精通C++11<chrono>库特性》chrono库是C++11中一个非常强大和实用的库,它为时间处理提供了丰富的功能和类型安全的接口,通过本文的介绍,我们了解了chrono库的基本概念... 目录一、引言1.1 为什么需要<chrono>库1.2<chrono>库的基本概念二、时间段(Durat

C++20管道运算符的实现示例

《C++20管道运算符的实现示例》本文简要介绍C++20管道运算符的使用与实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录标准库的管道运算符使用自己实现类似的管道运算符我们不打算介绍太多,因为它实际属于c++20最为重要的

Visual Studio 2022 编译C++20代码的图文步骤

《VisualStudio2022编译C++20代码的图文步骤》在VisualStudio中启用C++20import功能,需设置语言标准为ISOC++20,开启扫描源查找模块依赖及实验性标... 默认创建Visual Studio桌面控制台项目代码包含C++20的import方法。右键项目的属性:

python删除xml中的w:ascii属性的步骤

《python删除xml中的w:ascii属性的步骤》使用xml.etree.ElementTree删除WordXML中w:ascii属性,需注册命名空间并定位rFonts元素,通过del操作删除属... 可以使用python的XML.etree.ElementTree模块通过以下步骤删除XML中的w:as