只读(C++)

禁止用户的数据成员。

[readonly]

备注

只读 C++ 特性具有与 只读 MIDL 属性相同。

如果要禁止方法参数的修改,请使用 属性。

示例

下面的代码演示 只读 属性的用法:

// cpp_attr_ref_readonly.cpp
// compile with: /LD
[idl_quote("midl_pragma warning(disable:2461)")];
#include "unknwn.h"
[module(name="ATLFIRELib")];

[dispinterface, uuid(11111111-1111-1111-1111-111111111111)]
__interface IFireTabCtrl
{
   [readonly, id(1)] int i();
};

要求

属性上下文

适用对象

接口方法

可重复

必需的特性

无效的特性

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

请参见

其他资源

IDL特性

数据成员属性

Attributes Samples