字符串(C++)

指示一维 char、 wchar_t、 字节 (或等效) 数组或指针到此数组必须将字符串。

[string]

备注

字符串 C++ 特性具有与 字符串 MIDL 属性相同。

示例

下面的代码演示如何使用 字符串 在接口与在 typedef:

// cpp_attr_ref_string.cpp
// compile with: /LD
#include "unknwn.h"
[module(name="ATLFIRELib")];
[export, string] typedef char a[21];
[dispinterface, restricted, uuid("00000000-0000-0000-0000-000000000001")]
__interface IFireTabCtrl
{
   [id(1)] HRESULT Method3([in, string] char *pC);
};

要求

属性上下文

适用对象

数组或指针数组,接口参数,接口方法

可重复

必需的特性

无效的特性

有关属性上下文的更多信息,请参见 属性上下文

请参见

参考

导出

其他资源

IDL特性

数组属性

Attributes Samples