std::tuple_element<std::pair>
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <utility> 中定义
|
||
template< class T1, class T2 > struct tuple_element<0, std::pair<T1,T2> >; |
(1) | (C++11 起) |
template< class T1, class T2 > struct tuple_element<1, std::pair<T1,T2> >; |
(2) | (C++11 起) |
std::tuple_element为对偏特化的编译时间的方式来获得对元素的类型,元组的语法.
原文:
The partial specializations of std::tuple_element for pairs provide a compile-time way to obtain the types of the pair's elements, using tuple-like syntax.
目录 |
[编辑] 会员类型
| |
会员类型
|
Definition |
type
|
T1
|
| |
会员类型
|
Definition |
type
|
T2
|
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
获得指定的元素的类型 原文: obtains the type of the specified element (类模板特化) | |
array 的元素获得的类型 原文: obtains the type of the elements of array (类模板特化) | |
(C++11) |
获得一个pair 的大小 (类模板特化) |