- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将一个共享指针从 QTGUI
类传递到 Client
类,但一直收到 bad weak ptr
错误。我读到我不能直接在构造函数中分配 shared_from_this()
,因为此时指针还没有准备好。
因此我创建了一个 getptr
函数来返回对象的指针,以便稍后在进一步的调用中将其分配给客户端。但是它似乎也不起作用。
我在这里错过了什么?非常感谢您。
qtgui.hpp
#ifndef QTGUI_H
#define QTGUI_H
#include <QMainWindow>
#include <QFileSystemWatcher>
#include <boost/enable_shared_from_this.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/signals2.hpp>
#include <boost/bind.hpp>
class Client;
namespace Ui {
class QTGUI;
}
class QTGUI : public QMainWindow, public boost::enable_shared_from_this<QTGUI>
{
Q_OBJECT
public:
explicit QTGUI(QWidget *parent = 0);
~QTGUI();
void start();
boost::shared_ptr<QTGUI> getptr();
/* Signals */
typedef boost::signals2::signal
<void (const char* ipaddress, const char* port)> start_connect;
typedef start_connect::slot_type start_connect_st;
boost::signals2::connection start_connect_ui(const start_connect_st& slot);
private slots:
private:
Ui::QTGUI *ui;
boost::shared_ptr<Client> client_;
start_connect sc_signal;
};
#endif // QTGUI_H
qtgui.cpp
#include "qtgui.h"
#include "ui_qtgui.h"
#include <iostream>
#include <QHostAddress>
#include <QRegExp>
#include <QIntValidator>
#include <QFileDialog>
#include <unistd.h>
#include <pwd.h>
#include <sys/types.h>
#include "../client/client.hpp"
#include <boost/bind.hpp>
#include <boost/thread.hpp>
QTGUI::QTGUI(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::QTGUI),
connected_(false),
client_(new Client)
{
start();
}
boost::shared_ptr< QTGUI > QTGUI::getptr()
{
return shared_from_this();
}
void QTGUI::start()
{
client_->addui(getptr());
client_->get_con_status(boost::bind(&QTGUI::connection_status, this,
_1));
}
boost::signals2::connection QTGUI::start_connect_ui(const start_connect_st&
slot)
{
return sc_signal.connect(slot);
}
客户端.hpp
#ifndef CLIENT_HPP
#define CLIENT_HPP
#include <boost/asio.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/thread.hpp>
#include <boost/signals2.hpp>
#include "../common/message.hpp"
class QTGUI;
class Client : public boost::enable_shared_from_this<Client>
{
public:
Client(/*boost::shared_ptr<QTGUI> ui*/);
void addui(boost::shared_ptr<QTGUI> ptr);
/* Signals */
typedef boost::signals2::signal<void (bool status)> connect_status;
typedef connect_status::slot_type connect_status_st;
boost::signals2::connection get_con_status(const connect_status_st& slot);
private:
boost::shared_ptr<QTGUI> ui_;
boost::shared_ptr<boost::thread> thread_;
boost::shared_ptr<boost::asio::io_service> io_service_;
boost::shared_ptr<boost::asio::io_service::work> work_;
boost::shared_ptr<boost::asio::ip::tcp::socket> socket_;
connect_status cs_sig;
};
#endif// client.hpp
客户端.cpp
#include <boost/bind.hpp>
#include <boost/bind/protect.hpp>
#include <boost/function.hpp>
#include <cstdio> /* sprintf */
#include "client.hpp"
#include "../common/commands.hpp"
#include "../common/kinotify.hpp"
#include "../gui/qtgui.h"
#include <functional>
#include <unistd.h>
Client::Client(/*boost::shared_ptr<QTGUI> ui*/):
//ui_(ui),
io_service_(new boost::asio::io_service),
work_(new boost::asio::io_service::work(*io_service_)),
connected_(false)
{
start();
}
void Client::addui(boost::shared_ptr< QTGUI > ptr)
{
ui_ = ptr;
std::cout << "Connecting..." << std::endl;
ui_->start_connect_ui(boost::bind(&Client::post_connect,
shared_from_this(), _1, _2));
}
void Client::start()
{
if(thread_)
return;
std::cout << "Creating new thread bruh" << std::endl;
thread_.reset(new boost::thread(
boost::bind(&boost::asio::io_service::run, io_service_)
));
std::cout << "start Thread ID [" << boost::this_thread::get_id() <<
"]" << std::endl;
}
void Client::stop()
{
if(!thread_)
return;
std::cout << "Ending" << std::endl;
socket_->shutdown(boost::asio::ip::tcp::socket::shutdown_both);
socket_->close();
io_service_->stop();
thread_->join();
io_service_->reset();
thread_.reset();
}
boost::signals2::connection Client::get_con_status(const connect_status_st&
slot)
{
return cs_sig.connect(slot);
}
编辑:添加main.cpp
#include "qtgui.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTGUI w;
w.start();
w.show();
return a.exec();
}
最佳答案
I have read that I can't assign an shared_from_this() directly in a constructor, because the pointer is not ready at that point.
是的,在对象完全构造之前不能使用 shared_from_this()
。只有在那个时候底层的 weak_ptr
才会被赋值。限制不仅仅是来自构造函数的直接 - 在QTGUI
完全构建之前,您仍在调用shared_from_this
。您正在使用一个函数从另一个函数检索它这一事实并不重要。
创建类后,只需在类外部调用 start()
即可。那会起作用的。
旁注:getptr()
没有用。直接使用 shared_from_this()
即可。
关于c++ - 获取 'bad_weak_ptr' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37630593/
我正在学习智能指针和shared_from_this。在Class Inheritance Relations中,会很难理解。 我有两个基类CA和CB,它们派生自enable_shared_from_
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: enable_shared_from_this - empty internal weak pointer?
我想创建一些 Timer 类,它每 N 秒打印一次“文本”,其中 N 将在构造函数中初始化。 #include #include #include #include class Timer :
我使用 boost asio 和 beast(用于浏览器支持)开发桌面聊天。 我使用这个架构: 但是,在构建时,我遇到了一个问题:bad_weak_ptr,我不知道哪里出了问题:s这是源代码的链接 h
我试图将一个共享指针从 QTGUI 类传递到 Client 类,但一直收到 bad weak ptr 错误。我读到我不能直接在构造函数中分配 shared_from_this(),因为此时指针还没有准
当我这样做时出现异常:std::bad_weak_ptr->shared_from_this() template class painter_record_t { ....... private:
我正在尝试在 asio 中保留已连接客户端的列表。我已经从文档 (http://www.boost.org/doc/libs/1_57_0/doc/html/boost_asio/example/cp
我想了解为什么在调用 shared_from_this 时会出现 bad_weak_ptr 异常。 #include #include class parent : public std::ena
我开发了一些可以正确编译但在(调试)运行时失败的代码。我正在使用 VS2015。 背景:我正在构建一个高级消息引擎。为了使新消息的编程添加可维护,在生产代码中,我花时间使用 explicit init
我有一个 SuperParent 类,一个 Parent 类(派生自 SuperParent)并且都包含一个 shared_ptr到一个 Child 类(它包含一个 weak_ptr 到一个 Supe
为了创建我的 EventManager,我需要创建一些函数,这些函数会使用 Listeners 的 shared_ptr 将它们存储到 vector 中并调用它们的事件函数。我这样做了,它工作正常,除
我正在将 BOOST 移植到我的 TI 嵌入式平台,在嵌入式环境中不支持异常是很常见的,所以我的 TI 嵌入式平台支持。所以我使用 BOOST_EXCEPTION_DISABLE 和 BOOST_NO
我有一个基类和一个派生类。 API 仅公开 Derived,而实现隐藏在 Base 中(gcc 属性 visibility 设置为 hidden ),因为一些内部 API 模块必须调用 Base 方法
编辑:我从来没有弄明白这一点——我重构了代码,使其与 Boost 示例几乎相同,但问题仍然存在。如果其他人遇到此问题,则您的问题可能是更常见的 shared_from_this() 在不存在 shar
我定义了一个类似于下面的类: class A : std::enable_shared_from_this { public: static std::shared_ptr create() {
我试图理解 std::enable_shared_from_this 类的行为,但我无法理解。所以我写了一个简单的程序来测试不同的情况。 问题 谁能解释一下下面代码的行为,因为我无法解释观察到的结果。
我正在使用独立的 Asio 和 C++11 创建一个 C++ 服务器应用程序,但遇到错误,这就是我寻求帮助的原因。 错误 在类里面worker_thread , 在通话期间 shared_from_t
首先,我已阅读列出的所有相关问题。 他们说,“在使用 shared_from_this 之前,你必须有一个指向 this 的现有 shared_ptr。”据我所知,我绝不会违反该条件。我将 Foo 的
首先,这个问题似乎与同时使用 clang(任何版本)和高于 6.5.0 版本的 libstdc++ 有关。 我在我的代码库中使用以下习惯用法来对用户隐藏实现: #include class mycl
这个问题在这里已经有了答案: std::enable_shared_from_this: is it allowed to call shared_from_this() in destructor
我是一名优秀的程序员,十分优秀!