Boost 学习之Align-序言部分

序言

这个库提供了:对齐函数、内存分配对齐函数、内存释放对齐函数、对齐分配器、对齐分配适配器,对齐删除器、某类对对齐需求的特性、一个暗示指针对齐的宏、一个函数来验证指针的值是否对齐。


The Boost.Align Library

组件 描述
align 对齐函数指针

aligned_alloc,aligned_free

非配对齐的内存    和释放内存函数
aligned_allocator 对齐感知分配器
aligned_allocator_adaptor 对齐感知分配器适配器
aligned_delete 从对齐内存中释放内存的删除器
alignment_of 对齐需求应满足的一种特征
assume_aligned 静态指针对齐提示宏
is_aligned 指向对齐验证函数的指针

原文链接:http://www.boost.org/doc/libs/1_60_0/doc/html/align.html

你可能感兴趣的:(C++,boost,对齐)