/** =====================================================================================** Filename: cppPython.cpp** Description:** Version: 1.0* Created: 09/26/2017 05:01:58 PM* Last Modified: 2018年01月08日 08:19:21* Revision: none* Compiler: gcc** Author: zt (),* Organization:** =====================================================================================*/#include <stdio.h>#include <stdlib.h>#include <python2.7/Python.h>#include <iostream>//g++ cppPython.cpp -o a -lpython2.7void HelloWorld(){Py_Initialize();PyObject* pModule = NULL;PyObject* pFunc = NULL;pModule = PyImport_ImportModule ( "test" );if ( pModule )pFunc = PyObject_GetAttrString ( pModule, "hello" );elsestd::cout << "pModule " << pModule << std::endl;if ( pFunc )PyEval_CallObject ( pFunc, NULL );elsestd::cout << "pFunc " << pFunc << std::endl;Py_Finalize();}int main ( int argc, char* argv[] ){( void ) argc;( void ) argv;HelloWorld();return 0;}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。