读书人

函数原码解读 急

发布时间: 2012-02-23 22:01:35 作者: rapoo

函数原码解读 急 在线等
/**
* Create an ACE_Message_Block that refers to @a data without
* copying it. The @a data memory will not be freed when this block is
* destroyed; memory management of @a data is left to the caller.
* Note that the @c size of the new ACE_Message_Block will be @a size, but
* the @c length will be 0 until the write pointer is changed.
*/
ACE_Message_Block (const char *data,
size_t size = 0,
unsigned long priority = ACE_DEFAULT_MESSAGE_BLOCK_PRIORITY);


以上是ACE_Message_Block 构造函数的原型注解与声明。不明白。在注解中的@a,@c 之类的是什么意思?谢了。

[解决办法]
这是doxygen用到的格式标记。
[解决办法]
表示一个参数

读书人网 >C++

热点推荐