• 首页
  • 文件
  • 下载
  • 状态
  • 常见问题
  • 邮件列表
  • 应用程序
  • 外部链结
  • 版权
  • 志愿者
  • 联络

类别:AllocationLink

记忆体配置连结串列

类型 使用 成员 说明
建构子 public AllocationLink(void)
建构子 public AllocationLink (AllocationLink * next,void * buffer)
建构子 public AllocationLink (const AllocationLink & link)
解构子 public ~AllocationLink(void)
资料 public AllocationLink * next
资料 public void * buffer

建议

外部程序不应使用这个类别,这是专门为了「音讯驱动介面」内部使用的类别,使用于整群记忆体配置的纪录功能。

C/C++定义


class AllocationLink
{
  public:

    AllocationLink * next   ;
    void           * buffer ;

    explicit AllocationLink (void) ;
             AllocationLink (AllocationLink * next,void * buffer) ;
             AllocationLink (const AllocationLink & link) ;
    virtual ~AllocationLink (void) ;

};