/* * ===================================================================================== * * Filename: python.cpp * * Description: * * Version: 1.0 * Created: 2017年08月11日 14时46分32秒 * Last Modified: 2017年08月11日 14时46分32秒 * Revision: none * Compiler: gcc * * Author: zt (), * Organization: * * ===================================================================================== */ //g++ python.cpp -o a -g -lpython2.7 #include #include #include #include #include void Test_Add ( int a, int b ) { Py_Initialize(); PyRun_SimpleString ( "import sys" ); /* */ PyRun_SimpleString ( "sys.path.append('./')" ); /* 模块不能用test之类常见的名字,python内置test模块优先级最高 */ PyObject* pModule = PyImport_ImportModule ( "test2" ); if ( !pModule ) std::cout