0

我是 python 的初学者,对 C++ 有中级知识。我正在尝试在 c++ 中嵌入 python 代码。但是,我遇到了构建错误,以我目前的知识水平,我无法对其进行故障排除。请在这方面帮助我。以下是代码。

    #include <iostream> 
         using namespace std;
         #include <Python.h> 
         int main() 
        { 
        cout<<"Calling Python to find the sum of 2 and 2"; 
        // Initialize the Python interpreter. 
        Py_Initialize();
        // Create some Python objects that will later be assigned values. 

    PyObject *pName,*pModule, *pDict, *pFunc, *pArgs, *pValue; 
    // Convert the file name to a Python string.
     pName = PyString_FromString("Sample.py"); // Import the file as a Python module. 

    pModule = PyImport_Import(pName); 
    // Create a dictionary for the contents of the module. 
    pDict = PyModule_GetDict(pModule); 
    // Get the add method from the dictionary. 
    pFunc = PyDict_GetItemString(pDict, "add"); 
    // Create a Python tuple to hold the arguments to the method. 
    pArgs = PyTuple_New(2); 
    // Convert 2 to a Python integer. 
    pValue = PyInt_FromLong(2); 
    // Set the Python int as the first and second arguments to the method. 

    PyTuple_SetItem(pArgs, 0, pValue); 
    PyTuple_SetItem(pArgs, 1, pValue); 
    // Call the function with the arguments. 
    PyObject* pResult = PyObject_CallObject(pFunc, pArgs); 
    // Print a message if calling the method failed. 
    if(pResult == NULL) 
    cout<<"Calling the add method failed.\n"; 
    // Convert the result to a long from a Python object. 
    long result = PyInt_AsLong(pResult); 
    // Destroy the Python interpreter. 
    Py_Finalize(); // Print the result. 
    cout<<"The result is"<<result; 
    cout<<"check";
    return 0; 

    }

我收到以下错误: pytest.exe 中 0x00000000 处的未处理异常:0xC0000005:访问冲突。 并且构建在pModule = PyImport_Import(pName); 文件 Sample.py 具有以下内容的行处中断:

    # Returns the sum of two numbers.
    def add(a, b):
        return a+b 

我正在使用 python 2.7 和 VS2010。我为此创建了一个 win32 控制台项目,并且正在发布模式下构建。我已将文件 Sample.py 复制到项目文件夹中。我无法弄清楚是什么导致构建崩溃。请帮助。

4

1 回答 1

0

首先,缩进你的代码,MSVC 甚至可以选择自动缩进!毕竟,您希望这里的人们阅读它,所以去清理它。然后,不要在未在 C++ 中初始化变量的情况下声明变量。这清楚地表明您可以从哪里使用它们。最后,每当你调用一个函数时,检查它的结果是否有错误。默认情况下,仅throw std::runtime_error("foo() failed");针对错误。更详细地说,您可以尝试从 Python 检索和添加错误信息。

现在,您的直接错误是使用空指针,如果您检查了返回值,您会避免这种情况。在编写代码以正确检测该错误之后,我接下来要看的是 Python 解释器的初始化缺失。您已经有评论,但评论不算数。我猜如果你实现了正确的错误处理,Python 也会告诉你缺少初始化。

于 2013-04-26T06:03:16.347 回答