gpt4 book ai didi

python - 从 python 调用 C++ 方法

转载 作者:行者123 更新时间:2023-11-28 06:06:36 24 4
gpt4 key购买 nike

我在 python 中调用 C++ 方法时遇到了一些问题 I got this following link in stack overflow

但我不使用 Boost 包和痛饮。 python 中是否有任何方法可用于调用这些 C++ 方法。我正在将 C++ 编译为 Linux 中的共享对象并在 Python 2.7 中使用

#include <iostream>
using namespace std;

class Polygon {
protected:
int width, height;
public:
void set_values (int a, int b)
{ width=a; height=b; }
};

class Rectangle: public Polygon {
public:
int area()
{ return width*height; }
};

class Triangle: public Polygon {
public:
int area()
{ return width*height/2; }
};

int main () {
Rectangle rect;
Triangle trgl;
Polygon * ppoly1 = &rect;
Polygon * ppoly2 = &trgl;
ppoly1->set_values (4,5);
ppoly2->set_values (4,5);
cout << rect.area() << '\n';
cout << trgl.area() << '\n';
return 0;
}

请指导实现这一目标。任何代码片段或示例将不胜感激。

提前致谢——

最佳答案

此答案仅适用于 Python2.x!

当你想写一个 C++ 扩展时,你首先需要下载 python-dev 包以获得所有需要的库和头文件(仅在 Linux 上需要)

下面源码中最重要的部分是PolygonObjectPyTypeObject

多边形对象

此类的一个对象表示您在 Python 中的 Polygon 实例。如您所见,它包含一个指针 obj,这是您的原始对象。

PyTypeObject

https://docs.python.org/2/c-api/type.html#c.PyTypeObject

The C structure of the objects used to describe built-in types.

以下是如何使用多边形对象:

import libfoo
po = libfoo.Polygon()
po.set_values(1, 2)

这是模块实现(libfoo.cpp)。此示例不包含继承,但您必须查找的关键字是 tp_base。此外,原始 Python 源代码中有很多示例,可以在这里提供很多帮助。

#include <Python.h>

// this is your original class
class Polygon {
protected:
int width, height;
public:
void set_values (int a, int b)
{ width=a; height=b; }
};

typedef struct {
PyObject_HEAD
Polygon* obj;
} PolygonObject;

static void
Polygon_dealloc(PolygonObject* self)
{
delete self->obj;
self->ob_type->tp_free((PyObject*)self);
}

static PyObject *
Polygon_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PolygonObject *self;

self = (PolygonObject*)type->tp_alloc(type, 0);
if (self != NULL) {
self->obj = new Polygon;
// do your cleanup here
}

return (PyObject *)self;
}

static PyObject* Polygon_set_values(PolygonObject* self, PyObject *args, PyObject *kwds)
{
int a, b;
const char* kwlist[] = {"a", "b", NULL};

if (! PyArg_ParseTupleAndKeywords(args, kwds, "ii", (char**)kwlist, &a, &b))
return NULL;

self->obj->set_values(a, b);
Py_INCREF(Py_None);
return Py_None;
}

static PyMethodDef Polygon_methods[] = {
{"set_values", (PyCFunction)Polygon_set_values, METH_VARARGS, "set the value"},
{NULL} /* Sentinel */
};

static PyTypeObject PolygonType = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"mod.Polygon", /*tp_name*/
sizeof(PolygonObject), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)Polygon_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash */
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
"Polygon class", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
Polygon_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
Polygon_new, /* tp_new */
};

static PyMethodDef module_methods[] = {
{NULL} /* Sentinel */
};

PyMODINIT_FUNC
initlibfoo()
{
PyObject* m;

if (PyType_Ready(&PolygonType) < 0)
return;

m = Py_InitModule3("libfoo", module_methods, "Example module that creates an extension type.");
if (m == NULL)
return;

Py_INCREF(&PolygonType);
PyModule_AddObject(m, "Polygon", (PyObject *)&PolygonType);
}

clang++ -shared -I/usr/include/python2.7/ -fPIC libfoo.cpp -o libfoo.so -lpython

这里有两个额外的链接,可以为您提供更多信息和更深入的技术背景,了解如何扩展 Python。

https://docs.python.org/2/extending/newtypes.html https://docs.python.org/2/extending/extending.html

关于python - 从 python 调用 C++ 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32259762/

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