在C++ 11中, alignof运算符用于返回对齐方式,以指定类型的字节为单位。
句法:
alignof(type)
语法说明:
- alignof:运算符以字节为单位返回对齐,这对于类型的实例是必需的,该类型是完整类型,数组类型或引用类型。
- 数组类型:返回元素类型的对齐要求。
- 引用类型:运算符返回引用类型的对齐方式。
返回值: alignof运算符通常用于返回类型为std :: size_t的值。
程序:
// C++ program to demonstrate alignof operator
#include
using namespace std;
struct Geeks {
int i;
float f;
char s;
};
struct Empty {
};
// driver code
int main()
{
cout << "Alignment of char: " << alignof(char) << endl;
cout << "Alignment of pointer: " << alignof(int*) << endl;
cout << "Alignment of float: " << alignof(float) << endl;
cout << "Alignment of class Geeks: " << alignof(Geeks) << endl;
cout << "Alignment of Empty class: " << alignof(Empty) << endl;
return 0;
}
输出:
Alignment of char: 1
Alignment of pointer: 8
Alignment of float: 4
Alignment of class Geeks: 4
Alignment of Empty class: 1
alignof vs sizeof:
alignof值与基本类型的sizeof值相同。考虑一下这个例子:
typedef struct { int a; double b; } S;
// alignof(S) == 8
在以上情况下, alignof值是结构中最大元素的对齐要求。
演示alignof和sizeof之间差异的示例程序:
// C++ program to demonstrate
// alignof vs sizeof operator
#include
using namespace std;
struct Geeks {
int i;
float f;
char s;
};
int main()
{
cout << "alignment of Geeks : " << alignof(Geeks) << '\n';
cout << "sizeof of Geeks : " << sizeof(Geeks) << '\n';
cout << "alignment of int : " << alignof(int) << '\n';
cout << "sizeof of int : " << sizeof(int) << '\n';
}
输出:
alignment of Geeks : 4
sizeof of Geeks : 12
alignment of int : 4
sizeof of int : 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。