具有给定的类 C 分配和释放函数的shared_ptr
我得到了某个库的 API(准确地说是 nng) 它有一个类似 C 的接口,用于分配和取消分配消息对象:
int nng_msg_alloc(nng_msg **, size_t);
void nng_msg_free(nng_msg *);
我正在尝试为该库创建一个 C++ 接口。 我想创建一个 nng_msg 对象的shared_ptr,但我在实现上遇到了困难。 如何将分配器和解除分配器传递给共享对象?
I was given an API for some library (nng to be exact)
it has a C-like interface for allocating and deallocating a message object:
int nng_msg_alloc(nng_msg **, size_t);
void nng_msg_free(nng_msg *);
I'm trying to create a C++ interface for the library.
I would like to create a shared_ptr of a nng_msg object, but I'm struggling with the implementation.
How do i pass the allocator and deallocator to the shared object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将分配的指针和自定义删除器传递给 std::shared_ptr ,例如:
You only have to pass the allocated pointer and the custom deleter to
std::shared_ptr
, for example: