我有一个使用 boost python 的 C++ 类。我正在尝试使用 pthread 在 C++ 的线程中运行 python 代码。问题是下面的代码没有产生任何输出。我期待标准输出John DOE
中的输出。似乎它&this->instance
不带有对象内部设置的值。如何将当前对象或其实例变量传递给pthread_create
以便pthread
可以看到正在传递的内容?
Python:
class A:
def __init__(self, name):
self.name = name
def printName(self, lastName):
print self.name + " " + lastName
C++:
#include <boost/python.hpp>
#include <string.h>
#include <pthread.h>
using namespace std;
using namespace boost::python;
class B {
public:
object instance;
B();
void setupPython();
static void *runPython(void *);
};
B::B() {
Py_Initialize();
}
void B::setupPython() {
pthread_t t1;
try {
object a = import("A");
instance = a.attr("A")("John");
pthread_create(&t1, NULL, runPython, &this->instance); // THIS IS PROBLEM
}
catch(error_already_set const &) {
PyErr_Print();
}
}
void *B::runPython(void *instance) {
((object *)instance)->attr("printName")("DOE");
}
int main() {
B b;
b.setupPython();
}
谢谢你。