首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

函数原码解读 急

2012-02-23 
函数原码解读急在线等/***CreateanACE_Message_Blockthatrefersto@adatawithout*copyingit.The@adatamemor

函数原码解读 急 在线等
/**
      *   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用到的格式标记。
[解决办法]
表示一个参数

热点排行