- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想用Cython为cpp类创建一个包装器。但是这个类聚合了另一个类,我不知道是否还需要为此类创建一个包装器,因为我不想从Python调用第二个类。
有cpp类:
测试类
#ifndef TESTCLASS_H
#define TESTCLASS_H
#include "ocean.hpp"
class TestClass {
private:
Ocean _ocean;
public:
int x, y;
TestClass();
~TestClass();
int Multiply(int a, int b);
};
#endif
#include "testclass.hpp"
TestClass::TestClass()
{
x = 5;
y = 1;
_ocean = Ocean();
}
TestClass::~TestClass()
{
std::cout << "Calling destructor" << std::endl;
}
int TestClass::Multiply(int a, int b)
{
return a*b;
}
#ifndef OCEAN_H
#define OCEAN_H
class Ocean {
public:
double _depth;
double _rho;
Ocean();
virtual ~Ocean();
void setwaterdepth(double d);
};
#endif
cdef extern from "ocean.hpp":
cdef cppclass Ocean:
Ocean()
from ocean cimport Ocean
cdef extern from "testclass.hpp":
cdef cppclass TestClass:
TestClass()
int x
int y
int Multiply(int a, int b)
cdef class pyTestClass:
cdef TestClass* thisptr # hold a C++ instance
def __cinit__(self):
self.thisptr = new TestClass()
def __dealloc__(self):
del self.thisptr
def Multiply(self, a, b):
return self.thisptr.Multiply(a, b)
from distutils.core import setup, Extension
from Cython.Build import cythonize
ext = Extension("test",
sources=["test.pyx", "testclass.cpp"],
language="c++")
setup(name="test",
ext_modules=cythonize(ext))
C:\MinGW\bin\gcc.exe -mdll -O -Wall -IC:\Python27\include -IC:\Python27\PC -c testclass.cpp -o build\temp.win32-2.7\Release\testclass.o
writing build\temp.win32-2.7\Release\test.def
C:\MinGW\bin\g++.exe -shared -s build\temp.win32-2.7\Release\test.o build\temp.win32-2.7\Release\testclass.o build\temp.win32-2.7\Release\test.def -LC:\Python27\libs -LC:\Python27\PCbuild -LC:\Python27\PC\VS9.0 -lpython27 -lmsv
cr90 -o E:\00-Projets\InWave\Couplage\PYW\C++\test3\test.pyd
build\temp.win32-2.7\Release\testclass.o:testclass.cpp:(.text+0x97): undefined reference to `Ocean::~Ocean()'
build\temp.win32-2.7\Release\testclass.o:testclass.cpp:(.text+0xa3): undefined reference to `Ocean::~Ocean()'
build\temp.win32-2.7\Release\testclass.o:testclass.cpp:(.text+0xe4): undefined reference to `Ocean::Ocean()'
build\temp.win32-2.7\Release\testclass.o:testclass.cpp:(.text+0xfa): undefined reference to `Ocean::Ocean()'
build\temp.win32-2.7\Release\testclass.o:testclass.cpp:(.text+0x11a): undefined reference to `Ocean::~Ocean()'
build\temp.win32-2.7\Release\testclass.o:testclass.cpp:(.text+0x196): undefined reference to `Ocean::~Ocean()'
collect2.exe: error: ld returned 1 exit status
error: command 'C:\\MinGW\\bin\\g++.exe' failed with exit status 1
最佳答案
我终于设法使它起作用。
无需包装Ocean类,因此无需为其创建.pxd
文件。
但是在setup.py
中,包括所有.cpp
相关性很重要。
如之前的评论所述,在头文件中添加包含保护也很重要。
所以这是一个工作代码(与python setup.py build_ext --inplace
一起编译)
ocean.hpp
#ifndef OCEAN_H
#define OCEAN_H
class Ocean {
public:
double _depth;
double _rho;
Ocean();
virtual ~Ocean();
void setwaterdepth(double d);
};
#endif
#ifndef TESTCLASS_H
#define TESTCLASS_H
#include "ocean.hpp"
class TestClass {
private:
Ocean _ocean;
public:
int x, y;
TestClass();
virtual ~TestClass();
int Multiply(int a, int b);
void _set_x(int x);
};
#endif
#include <iostream>
#include "testclass.hpp"
#include "ocean.hpp"
TestClass::TestClass()
{
x = 5;
y = 1;
_ocean = Ocean();
std::cout << "Calling constructor" << std::endl;
}
TestClass::~TestClass()
{
std::cout << "Calling destructor" << std::endl;
}
int TestClass::Multiply(int a, int b)
{
return a*b;
}
void TestClass::_set_x(int new_x)
{
x = new_x;
}
cdef extern from "testclass.hpp":
cdef cppclass TestClass:
TestClass()
int x
int y
int Multiply(int a, int b)
cdef class pyTestClass:
cdef TestClass* thisptr # hold a C++ instance
def __cinit__(self):
self.thisptr = new TestClass()
def __dealloc__(self):
del self.thisptr
def Multiply(self, a, b):
return self.thisptr.Multiply(a, b)
property y:
# Here we use a property to expose the public member
# y of TestClass to Python
def __get__(pyTestClass self):
return self.thisptr.y
def __set__(pyTestClass self, value):
self.thisptr.y = <int> value
from distutils.core import setup, Extension
from Cython.Build import cythonize
ext = Extension("test",
sources=["test.pyx", "testclass.cpp", "ocean.cpp"],
language="c++")
setup(name="test", ext_modules=cythonize(ext))
import test as wrapper
T = wrapper.pyTestClass()
print T.Multiply(3, 5)
print T.y
T.y = 3
print T.y
Calling ocean constructor
Calling ocean constructor
Calling ocean destructor
Calling constructor
15
1
3
Calling destructor
Calling ocean destructor
关于python - cython-将c++类聚合包装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41097214/
我有一个 Cassandra 集群,里面有 4 个表和数据。 我想使用聚合函数(sum,max ...)发出请求,但我在这里读到这是不可能的: http://www.datastax.com/docu
我有以下两张表 Table: items ID | TITLE 249 | One 250 | Two 251 | Three 我投票给这些: Table: votes VID | IID | u
这个问题在这里已经有了答案: Update MongoDB field using value of another field (12 个答案) 关闭 3 年前。 我想根据另一个“源”集合的文档中
我的收藏包含以下文件。我想使用聚合来计算里面有多少客户,但我遇到了一些问题。我可以获得总行数,但不能获得总(唯一)客户。 [{ _id: "n001", channel: "Kalip
我有下表 Id Letter 1001 A 1001 H 1001 H 1001 H 1001 B 1001 H 1001 H 1001
得到一列的表 ABC。 “创建”的日期列。所以样本值就像; created 2009-06-18 13:56:00 2009-06-18 12:56:00 2009-06-17 14:02:0
我有一个带有数组字段的集合: {[ name:String buyPrice:Int sellPrice:Int ]} 我试图找到最低和最高买入/卖出价格。在某些条目中,买入或卖出价格为零
我有以下问题: 在我的 mongo db 中,我有以下结构: { "instanceId": "12", "eventId": "0-1b", "activityType":
下面给出的是我要在其上触发聚合查询的 Elasticsearch 文档。 { "id": 1, "attributes": [ { "fieldId": 1,
我正在使用 Django 的 aggregate query expression总计一些值。最终值是一个除法表达式,有时可能以零作为分母。如果是这种情况,我需要一种方法来逃避,以便它只返回 0。 我
我正在学习核心数据,特别是聚合。 当前我想要做的事情:计算表中在某些条件上具有逆关系的多对关系的记录数。 目前我正在这样做: NSExpression *ex = [NSExpression expr
我需要有关 Delphi 中的 ClientDatasets 的一些帮助。 我想要实现的是一个显示客户的网格,其中一列显示每个客户的订单数量。我将 ClientDataset 放在表单上并从 Delp
我的集合有 10M 个文档,并且有一个名为 movieId 的字段;该文档具有以下结构: { "_id" : ObjectId("589bed43e3d78e89bfd9b779"), "us
这个问题已经有答案了: What is the difference between association, aggregation and composition? (21 个回答) 已关闭 9
我在 elasticsearch 中有一些类似于这些示例的文档: { "id": ">", "list": [ "a", "b", "c" ] } { "id"
我正在做一些聚合。但是结果完全不是我所期望的,似乎它们没有聚合索引中与我的查询匹配的所有文档,在这种情况下 - 它有什么好处? 例如,首先我做这个查询: {"index":"datalayer","t
假设我在 ES 中有这些数据。 | KEY | value | |:-----------|------------:| | A |
可能在我的文档中,我有一个被分析的文本字段。我只是在ElasticSearch AggregationAPI中迷路了。我需要2种不同情况的支持: 情况A)结果是带有计数标记(条款)的篮子下降。 情况B
我正在为网上商店构建多面过滤功能,如下所示: Filter on Brand: [ ] LG (10) [ ] Apple (5) [ ] HTC (3) Filter on OS: [ ] Andr
我有一个父/子关系并且正在搜索 child 。 是否可以在父属性上创建聚合? 例如parent 是 POST,children 是 COMMENT。如果父项具有“类别”属性,是否可以搜索 COMMEN
我是一名优秀的程序员,十分优秀!