c++的智能指针中 unique_ptr 为什么比 shared_ptr 多一个模板参数?

13 篇文章 0 订阅
本文讨论了C++中的`unique_ptr`在处理`FILE`指针时,与不同类型的函数指针(如`file_closer`和lambda表达式)关联的内存管理,展示了三种不同版本的`unique_ptr`实例及其大小差异。
摘要由CSDN通过智能技术生成

ref: https://www.zhihu.com/question/531686307/answer/2473883018

#include <cstdio>
#include <memory>

using namespace std;

struct file_closer {
    void operator()(FILE* fp) const
    {
        fclose(fp);
    }
};

void test1(const char* filename)
{
    unique_ptr<FILE, file_closer> ptr{fopen(filename, "r")};
    printf("sizeof of unique_ptr<FILE, file_closer> is %zu\n", sizeof ptr);
}

void test2(const char* filename)
{
    unique_ptr<FILE, void (*)(FILE*)> ptr{fopen(filename, "r"),
                                          [](FILE* fp) { fclose(fp); }};
    printf("sizeof of unique_ptr<FILE, void (*)(FILE*)> is %zu\n", sizeof ptr);
}

#if __cplusplus >= 202002L

void test3(const char* filename)
{
    unique_ptr<FILE, decltype([](FILE* fp) { fclose(fp); })> ptr{
        fopen(filename, "r")};
    printf("sizeof of unique_ptr<FILE, decltype(lambda)> is %zu\n", sizeof ptr);
}

#endif

int main()
{
    test1("test.cpp");//8
    test2("test.cpp");//16
#if __cplusplus >= 202002L
    test3("test.cpp");//8
#endif
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值