在c ++中嵌入python

时间:2011-10-09 18:08:33

标签: c++ python

我用c ++,borland创建了一个VCL应用程序。在我的项目中有一个文件,我在同一个方法中定义的方法中实现了嵌入式python(我的应用程序包含一个调用嵌入式python实现的方法的按钮)。当我编译时,我的构建成功。但是当我运行我的应用程序,然后单击按钮时,它会显示运行时错误:“模块'PYTHON25.DLL'中地址1E091375处的访问冲突。读取地址00000004”。请帮忙。 我之前从未使用过Python。 我的计划:

#pragma hdrstop

#include <fstream>
#include <iostream>
#include <iomanip>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>


#include "Python.h"

#include "Unit1.h"
#include "Unit2.h"
#pragma link "python25_bcpp.lib"

//---------------------------------------------------------------------------

#pragma package(smart_init)

bool callHelloWorld(int intVal)
{
    char fName[] = "Hello"; //file name
    char cFunc[] = "hello"; //method name

    char *pfName, *pcFunc;

    PyObject *pName, *pModule, *pDict, *pFunc ;

    pfName = fName;
    pcFunc = cFunc;

    Py_Initialize();

    pName = PyString_FromString(pfName);

    pModule = PyImport_Import(pName);

    pDict = PyModule_GetDict(pModule);

    pFunc = PyDict_GetItemString(pDict, pcFunc);

    if (PyCallable_Check(pFunc))
    {
        PyObject_CallObject(pFunc, NULL);
    } else
    {
        PyErr_Print();
    }


    // Py_DECREF(pModule);
    // Py_DECREF(pName);

    Py_Finalize();

    return 0;
}

2 个答案:

答案 0 :(得分:1)

检查PyImport_Import(搜索路径中的模块?)和PyDict_GetItemString的返回值。

如果这样做无助于在您的应用中添加一些跟踪消息,以查看它崩溃的位置。

答案 1 :(得分:0)

这对我有用:

只需删除 Py_Finalize()

即可

我在另一个网站上看到 Py_Finalize 在特定情况下遇到一些问题,例如线程。