WritableBytesConst
[本文档仅供预览,并可能在以后的版本中更改。 Blank topics are included as placeholders.]
WritableByteConst 属性指定指针指向的数组或缓冲区的可以合法写入的字节数。 Pre 和 Post 特性上允许此属性,此属性可以在指针或数组数据类型上使用。 此属性的值是类型为 size_t 的常数。
若要指定依赖函数的另一个参数才能起作用的可写入字节,请使用 WritableBytes 属性。
示例
下面的代码示例演示如何使用 WritableBytesConst 属性:
// C
#include <CodeAnalysis\SourceAnnotations.h>
void f ([SA_Pre(WritableBytesConst=3)] char *pc);
// C++
#include <CodeAnalysis\SourceAnnotations.h>
using namespace vc_attributes;
void f ([Pre(WritableBytesConst=3)] char *pc);