In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly introduces "how to call the python function in the C++ project". In the daily operation, I believe many people have doubts about how to call the python function in the C++ project. The editor consulted all kinds of information and sorted out a simple and easy-to-use method of operation. I hope it will be helpful to answer the doubt of "how to call the python function in the C++ project". Next, please follow the editor to study!
The code is as follows, respectively demonstrate the direct execution of the python statement, no return no parameter function call, return single parameter function call. Returns a multi-parameter function call:
# include # include using namespace std; / / execute the python command void ExecPythonCommand () {/ / execute PyRun_SimpleString directly ("from time import time,ctime\ n"print 'Today is',ctime (time ())\ n");} / / call the parameterless function void InvokeNoParm () {PyObject* pMod = NULL; PyObject* pFunc = NULL / / Import module pMod = PyImport_ImportModule ("Life"); if (pMod) {/ / get function address pFunc = PyObject_GetAttrString (pMod, "a"); if (pFunc) {/ / function call PyEval_CallObject (pFunc, NULL);} else {cout
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.