类别:AllocationLink
记忆体配置连结串列
类型 | 使用 | 成员 | 说明 |
建构子 | public | ||
建构子 | public | ||
建构子 | public | ||
解构子 | public | ||
资料 | public | ||
资料 | public |
建议
外部程序不应使用这个类别,这是专门为了「音讯驱动介面」内部使用的类别,使用于整群记忆体配置的纪录功能。C/C++定义
class AllocationLink
{
public:
AllocationLink * next ;
void * buffer ;
explicit AllocationLink (void) ;
AllocationLink (AllocationLink * next,void * buffer) ;
AllocationLink (const AllocationLink & link) ;
virtual ~AllocationLink (void) ;
};