gpt4 book ai didi

带有宏的类中的 C++ 自动 shared_ptr 类型

转载 作者:行者123 更新时间:2023-12-04 01:08:04 25 4
gpt4 key购买 nike

我正在尝试向项目中的每个类添加 shared_ptr 的类内别名,如下所示:

class Foo {
/* ... */
public:
using Ptr = std::shared_ptr<Foo>;
};

这样我就可以使用简写 Foo::Ptr fooObjPtr; 定义指向 Foo 的共享指针。有没有什么方法可以创建一个自动添加别名的宏?像这样的东西:

#define DEFINE_SHARED using Ptr = std::shared_ptr<__CLASS_NAME__>;

class Foo {
/* ... */
public:

DEFINE_SHARED
};

最佳答案

类模板可以做到这一点:

template<typename T>
class FooBase
{
public:
using Ptr = std::shared_ptr<T>;
};

class Foo :
public FooBase<Foo>
{
};

int main()
{
Foo::Ptr x = std::make_shared<Foo>();

std::cout << x << std::endl;
}

这应该可以在不依赖任何预处理器功能的情况下实现您的要求。

请注意,根据您的用例,您可能希望添加一些语法糖,例如确保 FooBase::T 实际上是从 FooBase 继承的。有几种解决方案 - 查找 CRTP,因为这是一个常见的“问题”。

关于带有宏的类中的 C++ 自动 shared_ptr 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65683168/

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