c – RAII的W包分配

前端之家收集整理的这篇文章主要介绍了c – RAII的W包分配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从库中获得了这些普通的C函数
struct SAlloc;
SAlloc *new_salloc();
void   free_salloc(SAlloc *s);

有没有什么办法可以把它用C包装成智能指针(std :: unique_ptr),或者用RAII包装器?

我主要是对标准库的可能性感到好奇而没有创建我自己的包装器/类.

解决方法

是的,您可以为此重用unique_ptr.只需制作自定义删除器.
struct salloc_deleter {
    void operator()(SAlloc* s) const {
        free_salloc(s); // what the heck is the return value for?
    }
}

using salloc_ptr = std::unique_ptr<SAlloc,salloc_deleter>;
原文链接:https://www.f2er.com/c/116621.html

猜你在找的C&C++相关文章