gpt4 book ai didi

c++ - 编译 boost 信号2的问题

转载 作者:行者123 更新时间:2023-11-30 03:07:57 25 4
gpt4 key购买 nike

为什么这个简单的示例无法编译,我该如何解决这个问题?

#include <iostream>
#include <boost/signals2/signal.hpp>

struct HelloWorld {
HelloWorld() {
i = 0;
}

void operator()() {
std::cout << "I is: " << i++ << std::endl;
}

void setup () {
sig.connect(this);
}

void run () {
sig();
}

boost::signals2::signal<void ()> sig;

private:
int i;
};

int main()
{
HelloWorld hello;
hello.setup();
hello.run();
hello.run();
hello.run();

return 0;
};

最佳答案

您正在尝试连接到一个指针,这是不可能的。相反,您需要连接到对您的对象的引用:

void setup () {
sig.connect(boost::ref(*this));
}

关于c++ - 编译 boost 信号2的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5500719/

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