ByteBufAllocator可以理解为ByteBuf的工厂
1.ByteBufAllocator接口方法
2.Unpooled工具类
提供了方便的辅助静态方法,内部由UnpooledByteBufAllocator实现
测试代码:
@Test
public void byteFactory() {
{
ByteBuf buf = Unpooled.buffer(16);
}
{
ByteBufAllocator allocator = new PooledByteBufAllocator(false);
ByteBuf buf = allocator.buffer(16);
}
}