gpt4 book ai didi

c++ - 将 0 传递给共享指针,删除器作为第一个参数

转载 作者:行者123 更新时间:2023-11-28 06:02:20 24 4
gpt4 key购买 nike

我正在阅读 Scott Meyrse C++,现在我正在阅读关于设计接口(interface)的部分。以下代码应该是无效的:

std::tr1::shared_ptr<Investment> // attempt to create a null
pInv(0, getRidOfInvestment); // shared_ptr with a custom deleter;
// this won’t compile

他给出了如下解释:

The tr1::shared_ptr constructor insists on its first parameter being a pointer, and 0 isn’t a pointer, it’s an int. Yes, it’s convertible to a pointer, but that’s not good enough in this case; tr1::shared_ptr insists on an actual pointer.

我自己试过类似的例子http://coliru.stacked-crooked.com/a/4199bdf68a1d6e19

#include <iostream>
#include <memory>

struct B{
explicit B(void *){ }
};

void del(int*){ }
int main()
{
B b(0);
std::shared_ptr<int*> ptr(0, del);
}

即使将 0 作为第一个参数传递,它也能正常编译和运行。

他到底是什么意思?这不是已经相关了吗?

最佳答案

一个来自#include <tr1/memory> ;另一个来自#include <memory> .有区别:

http://coliru.stacked-crooked.com/a/f76ea0ef17227d9d

#include <iostream>
#include <tr1/memory>
#include <memory>

struct B{
explicit B(void *){ }
};

void del(int*){ }
int main()
{
B b(0);
std::tr1::shared_ptr<int*> ptr(0, del);
std::shared_ptr<int*> ptr2(0, del);
}

它给出了 tr1 的错误版本,但不是当前的标准版本。

关于c++ - 将 0 传递给共享指针,删除器作为第一个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33006346/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com