enable_shared_from_this 可以不继承使用吗?

Can enable_shared_from_this be Used Without Inheritance?

我找到的 enable_shared_from_this 示例显示它是通过继承使用的。例如:

struct Good : enable_shared_from_this<Good> {
    shared_ptr<Good> getptr() {
        return shared_from_this();
    }
};

int main() {
    // Good: the two shared_ptr's share the same object
    shared_ptr<Good> gp1(new Good);
    shared_ptr<Good> gp2 = gp1->getptr();
    cout << "gp2.use_count() = " << gp2.use_count() << endl;
}

我这一天已经收到很多关于从标准库继承的危险的警告。这段代码似乎确实存在这些危险,例如:

struct A : enable_shared_from_this<A> {};
struct B : enable_shared_from_this<B> {};

如果我想创建 struct C : A, B {};,关键点显然是 C::shared_from_this()。显然我们可以解决这个问题,但存在一些固有的复杂性。

所以我的问题是,有没有办法将 enable_shard_from_this 用作具有关系而不是是关系?

is there a way to use enable_shard_from_this as a has-a relationship instead of an is-a relationship?

没有

enable_shared_from_this 应该 用作基础 class,因此在这种情况下盲目地应用适用于其他情况的准则是行不通的.

即使有充分的理由想要这样做(但没有),它也不会奏效。导致 enable_shared_from_this 基与拥有派生对象的 shared_ptr 共享所有权的魔法通过检查继承起作用。

enable_shared_from_this 无论如何都不对 IS-A 关系建模,因为它没有根据虚函数定义的接口。 IS-A 表示扩展基接口的派生类型,但这里不是这种情况。 A Good 不是 A enable_shared_from_this<Good>.

即使用继承并不总是意味着 IS-A 关系。

  1. enable_shared_from_this doesn't have a virtual destructor

除非您计划通过指向 enable_shared_from_this 基 class 的指针删除对象,否则虚拟析构函数是无关紧要的,这太疯狂了。没有理由将 Good 作为指向 enable_shared_from_this<Good> 基 class 的指针传递,更没有理由在该基指针上使用 delete(通常是type 会在创建后立即存储在 shared_ptr<Good> 中,因此您根本不会使用 delete)。

enable_shared_from_this 是混合类型,不是抽象基类。它提供 shared_from_this(很快就会 weak_from_this)成员,仅此而已。您不应该将其用作抽象基类或接口类型,也不应使用基类来访问派生类型的多态行为。事实上它根本没有虚函数,不仅仅是没有虚析构函数,应该告诉你这一点。

此外,如n.m。上面评论过,析构函数是受保护的,所以你 不能 通过基础 class 删除它,即使你尝试过(受保护的析构函数是防止这种类型的惯用方法滥用 mixin classes 旨在成为非多态基础 classes).

  1. The enable_shared_from_this destructor destroys *this, meaning it must always be the last destructor called

嗯?不确定你的意思,但它不负责销毁除自身和它自己的数据成员之外的任何东西。

  1. Inheritance from two classes that both inherit from enable_shared_from_this can become a bit of a sticking point

它应该可以正常工作(尽管如果没有一个明确的基础 class 是 enable_shared_from_this 的特化,您可能无法获得神奇的所有权共享)。 GCC 标准库有一个错误(现已修复),它无法编译,而不仅仅是无法共享所有权,但这不是 enable_shared_from_this.

的问题