【问题标题】:Calling another class` member functions via smart pointers通过智能指针调用另一个类的成员函数
【发布时间】:2017-06-30 21:35:09
【问题描述】:

在我正在编写的程序中,我有一个创建和处理一些线程的类。构造完成后,this 的实例将被赋予另一个类的对象,线程将能够调用其成员函数。

我已经让它与原始指针一起工作(只需替换智能指针),但由于我可以访问智能指针,我尝试使用它们来代替。虽然进展不大。

一些搜索让我使用了shared_ptrs,所以这就是我想要做的:

Obj.hpp:

#pragma once

#include "Caller.hpp"

class Caller;

class Obj : std::enable_shared_from_this<Obj> {
public:
    Obj(Caller &c);

    void dothing();
};

Caller.hpp:

#pragma once

#include <memory>

#include "Obj.hpp"

class Obj;

class Caller {
public:
    void set_obj(std::shared_ptr<Obj> o);

    std::shared_ptr<Obj> o;
};

main.cpp:

#include <iostream>
#include <memory>

#include "Caller.hpp"
#include "Obj.hpp"

void Caller::set_obj(std::shared_ptr<Obj> o)
{
    this->o = o;
}

Obj::Obj(Caller &c)
{
    c.set_obj(shared_from_this());
}

void Obj::dothing()
{
    std::cout << "Success!\n";
}

int main()
{
    Caller c;
    auto obj = std::make_shared<Obj>(c);

    c.o->dothing();
}

运行此代码会导致抛出std::bad_weak_ptr,但我不明白为什么。由于objshared_ptr,对shared_from_this() 的调用不应该有效吗?

g++ main.cppgcc 7.1.1 编译。

【问题讨论】:

  • 请随意改写标题问题。还有很多其他的问题可以匹配,但我不知道还能叫什么。

标签: c++ c++11 smart-pointers


【解决方案1】:

shared_from_this 仅在您被包裹在共享指针中后工作

在构建时,还没有指向您的共享指针。所以在你的构造函数完成之前你不能shared_from_this

解决这个问题的方法是旧的“虚拟构造函数”技巧。1

class Obj : std::enable_shared_from_this<Obj> {
  struct token {private: token(int){} friend class Obj;};
public:
  static std::shared_ptr<Obj> create( Caller& c );
  Obj(token) {}
};

inline std::shared_ptr<Obj> Obj::create( Caller& c ) {
  auto r = std::make_shared<Obj>(token{0});
  c.set_obj(r);
  return r;
}

然后在测试代码中:

Caller c;
auto obj = Obj::create(c);

c.o->dothing();

live example.


1 虚拟构造函数既不是虚拟也不是构造函数。

【讨论】:

  • 谢谢,这行得通。但是你的意思是让构造函数私有吗? g++ 不会编译它,转储了很多以“[constructor] 在此处声明为私有的错误。
  • @tmp 已修复,现在具有令牌安全性。
  • 工厂模式。
  • @Tmplt 抱歉,最后的错字已修正。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2015-05-06
  • 2016-01-28
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2010-12-01
相关资源
最近更新 更多