__alignof 运算符
C++11 引入 alignof 运算符,该运算符返回指定类型的对齐方式(以字节为单位)。为实现最大的可移植性,应使用 alignof 运算符,而不是特定于 Microsoft 的 __alignof 运算符。
返回一个 size_t 类型的值,该值是类型的对齐要求。
语法
__alignof( type )
备注
例如:
Expression | 值 |
---|---|
__alignof( char ) | 1 |
__alignof( short ) | 2 |
__alignof( int ) | 4 |
__alignof( __int64 ) | 8 |
__alignof( float ) | 4 |
__alignof( double ) | 8 |
__alignof( char* ) | 4 |
typedef struct { int a; double b; } S; // __alignof(S) == 8
在该示例中,__alignof 值是结构中的最大元素的对齐要求。
同样,
typedef __declspec(align(32)) struct { int a; } S;
typedef __declspec(align(32)) struct { int a; double b; } S; int n = 50; // array size S* p = (S*)aligned_malloc(n * sizeof(S), __alignof(S));
__uuidof 运算符
检索 GUID 并附加到表达式。
语法
__uuidof ( expression )
备注
该 表达式 可以是类型名称、指针、引用或该类型的数组、特定类型的模板或这些类型的变量。只要编译器可以使用它查找附加的 GUID,自变量就是有效的。
内部函数的一个特例就是当在 0 或 NULL 中作为参数提供。在这种情况下,__uuidof 将返回由零组成的GUID。
使用此关键字用以提取附加的 GUID:
一个对象通过 uuid 扩展其特性。
库块以使用 模块 属性创建。
System_CAPS_note注意
在调试版本中,__uuidof 总是动态初始化一个对象 (运行时)。当发布版本时,__uuidof 可以静态初始化对象(在编译时)。
下面的代码 (使用ole32.lib编译) 将显示一个创建模块属性库块uuid:
// expre_uuidof.cpp // compile with: ole32.lib #include "stdio.h" #include "windows.h" [emitidl]; [module(name="MyLib")]; [export] struct stuff { int i; }; int main() { LPOLESTR lpolestr; StringFromCLSID(__uuidof(MyLib), &lpolestr); wprintf_s(L"%s", lpolestr); CoTaskMemFree(lpolestr); }
注释
当库名不再在范围之内,你可以使用__LIBID_而不是 __uuidof。例如:
StringFromCLSID(__LIBID_, &lpolestr);