头文件:
#include
模板类别:
template
struct rank;
template
inline constexpr
std::size_t rank_v
= rank::value;
句法:
std::rank::value
参数: std :: rank模板接受单个参数T(Trait class)并返回其等级。
返回值:模板std :: rank返回类型T的等级。
下面是演示std :: rank的程序:
程序:
// C++ program to illustrate std::rank
#include
#include
using namespace std;
// Driver Code
int main()
{
cout << "rank of following type:"
<< endl;
cout << "int: "
<< rank::value
<< endl;
cout << "int[]: "
<< rank::value
<< endl;
cout << "int[][10]: "
<< rank::value
<< endl;
cout << "int[10][10]: "
<< rank::value
<< endl;
return 0;
}
输出:
rank of following type:
int: 0
int[]: 1
int[][10]: 2
int[10][10]: 2
参考: http : //www.cplusplus.com/reference/type_traits/rank/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。