• 首頁
  • 文件
  • 下載
  • 狀態
  • 常見問題
  • 郵件列表
  • 應用程式
  • 外部鏈結
  • 版權
  • 志願者
  • 聯繫

類別: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) ;

};