📜  C++中的std :: extent()模板及其示例

📅  最后修改于: 2021-05-30 10:31:02             🧑  作者: Mango

< type_traits >头文件中提供了C++ STL的std :: is_const模板。如果A是等级大于B的数组,则范围是Ath维度的边界,并且如果B为零且A是未知范围的数组,则范围值为零。

头文件:

#include

句法:

template 
  
  struct extent;

参数:它接受以下参数:

  • :代表一种特定的类型。
  • B :表示要获得程度的尺寸。

以下是演示std :: extent()的程序:

程序1:

// C++ program to demonstrate
// std::extent()
  
#include 
#include 
using namespace std;
  
// Driver Code
int main()
{
    // By default dimension is zero
    cout << extent::value << endl;
    cout << extent::value << endl;
    cout << extent::value << endl;
    cout << extent::value << endl;
    cout << extent::value << endl;
  
    const int ints[] = { 1, 2, 3, 4 };
  
    // Used to print the size of array
    cout << extent::value
         << endl;
  
    return 0;
}
输出:
3
3
4
0
0
4

程式2:

// C++ program to demonstrate
// std::extent()
  
#include 
#include 
using namespace std;
  
// Driver Code
int main()
{
    typedef int gfg[][50][70];
    cout << "gfg array (int[][50][70]):" << endl;
    cout << "rank: " << rank::value << endl;
    cout << extent::value << endl;
    cout << extent::value << endl;
    cout << extent::value << endl;
    cout << extent::value << endl;
    return 0;
}
输出:
gfg array (int[][50][70]):
rank: 3
0
50
70
0

参考: http://www.cplusplus.com/reference/type_traits/extent/

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”