在嵌入python中构建错误 - (我导入文件的地方)

时间:2013-04-25 22:47:50

标签: c++ python visual-studio-2010 python-2.7

我是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文件复制到项目文件夹中。 我无法弄清楚是什么导致构建崩溃。请帮助。

1 个答案:

答案 0 :(得分:0)

首先,缩进你的代码,MSVC甚至可以选择自动执行!毕竟,你希望这里的人们阅读它,所以去清理它。然后,如果没有在C ++中初始化变量,请不要声明变量。这清楚地说明了从哪里可以使用它们。最后,无论何时调用函数,请检查其结果是否有错误。默认情况下,只有throw std::runtime_error("foo() failed");出错。更精细的是,您可以尝试从Python中检索并添加错误信息。

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