📜  C++中的type_traits :: alignment_of模板

📅  最后修改于: 2021-05-30 14:16:18             🧑  作者: Mango

它用于查找等于类型T的对齐要求的成员常量值。如果T是引用类型,则它返回所引用类型的对齐要求。如果T是数组类型,则它返回元素类型的对齐要求。

头文件:

#include

句法:

template
  
  struct alignment_of;

参数:模板std :: alignment_of接受单个参数T(特质类)。

下面的程序说明了C++ STL中的std :: alignment_of模板:

程序1:

// C++ program to illustrate
// assignment_of template
  
#include 
#include 
using namespace std;
  
class GFG {
};
  
// main mehod
int main()
{
    cout << alignment_of::value << endl;
    cout << alignment_of() << endl;
    cout << alignment_of() << endl;
  
    return 0;
}
输出:
1
4
8

程式2:

// C++ program to illustrate
// assignment_of template
  
#include 
#include 
using namespace std;
  
class GFG {
};
  
// main method
int main()
{
    cout << alignment_of::value << endl;
    cout << alignment_of() << endl;
    cout << alignment_of() << endl;
  
    return 0;
}
输出:
1
4
1

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

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