first_is
指定要传输的第一个数组元素的索引。
[ first_is(
"expression"
) ]
参数
- 表达式
一个或多个 C 语言表达式。空参数允许槽。
备注
first_is C++ 特性具有与 first_is MIDL 属性相同。
示例
下面的代码在数组演示各种用来指定部分:
// cpp_attr_ref_first_is.cpp
// compile with: /LD
#include "windows.h"
#include "unknwn.h"
[module(name="MyLib")];
[object, uuid(11111111-1111-1111-1111-111111111111)]
__interface b
{
[id(0), propget, bindable, displaybind, defaultbind,
requestedit] HRESULT get_I([out, retval]long *i);
HRESULT Proc1([in] short First, [in] short Last,
[first_is(First), last_is(Last), size_is(Last-First)] char Arr1[]);
HRESULT Proc2([in] short First, [in] short Last,
[last_is(First), size_is(Last)] char Arr2[]);
};
要求
属性上下文
适用对象 |
字段在 struct 或 联合,接口参数,接口方法 |
可重复 |
否 |
必需的特性 |
无 |
无效的特性 |
无 |
有关更多信息,请参见 属性上下文。