WindowsError异常访问冲突 - 在简单的python c ++ ctypes接口中

时间:2014-04-16 09:48:48

标签: python c++ ctypes

我有一个非常简单的测试用例,我无法开始工作,我正在尝试使用ctypes将c ++与python连接起来。 我在使用双打时遇到错误,在这种情况下尝试使用" cout"在c ++中。

错误是:

WindowsError: exception: access violation writing 0x.....

问题在于以下c ++代码的cout行:

#include "testgeo.h"
#include <iostream>
TestGeo::TestGeo() : td_(0),
                     ti_(0) {
    std::cout<<td_<<std::endl; // problem line
}

其中包含以下标题(testgeo.h),包括extern C部分:

class TestGeo {

    public:
    TestGeo();
    ~TestGeo(){};

    private:
    double td_;
    int ti_;

};
extern "C" {
    __declspec(dllexport) TestGeo* TestGeo_new() {
        return new TestGeo();
    }
}   

运行它的python代码是(testgeo.py):

import ctypes
lib = ctypes.cdll.LoadLibrary('testgeo.dll')

class TestGeo(object):

    lib.TestGeo_new.argtypes = []
    lib.TestGeo_new.restype = ctypes.c_void_p

    def __init__(self):
        self.obj = lib.TestGeo_new()

if __name__ == "__main__":
    testGeoObj = TestGeo()

编辑1:仍在努力,我对编程很陌生。无论如何我可以进一步调查内存错误,这可能会给我一些线索吗?

编辑2:我想如果出现错误,我会分享我的编译方式:

x86_64-w64-mingw32-g++ -c testgeo.cpp -o testgeo.o -std=c++11 -O2 -Wall -Wextra -Weffc++ -pedantic
x86_64-w64-mingw32-g++ -shared -o testgeo.dll testgeo.o

运行代码:

python testgeo.py

编辑3:代码在我的linux机器上运行...这意味着我仍然不确定我的Windows问题。无论如何,它可以为这种情况提供一些启示。

1 个答案:

答案 0 :(得分:0)

在注意到其他问题之后,我发现编译器的配置是个问题,重新安装/不同的编译器允许运行此代码。