中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++項目中怎么調用python函數

發布時間:2021-07-05 18:17:32 來源:億速云 閱讀:230 作者:Leah 欄目:編程語言

C++項目中怎么調用python函數,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

代碼如下,分別演示直接執行python語句、無返回無參數函數調用、返回單參數函數調用。返回多參數函數調用:
 

 #include <Python.h>
  #include <iostream>
  using namespace std;
  //執行python命令
  void ExecPythonCommand()
  {
  //直接執行 

  PyRun_SimpleString("from time import time,ctime\n"
  "print 'Today is',ctime(time())\n");
  }
  //調用無參數函數
  void InvokeNoParm()
  {
  PyObject* pMod = NULL;
  PyObject* pFunc = NULL;
  //導入模塊
  pMod = PyImport_ImportModule("Life");
  if(pMod)
  {
  //獲取函數地址
  pFunc = PyObject_GetAttrString(pMod, "a");
  if(pFunc)
  {
  //函數調用
  PyEval_CallObject(pFunc, NULL);
  }
  else
  {
  cout << "cannot find function a" << endl;
  }
  }
  else
  {
  cout << "cannot find Life.py" << endl;
  }
  }

  //調用一參數函數
 

 void InvokeWith2Parm()
  {
  PyObject* pMod = NULL;
  PyObject* pFunc = NULL;
  PyObject* pParm = NULL;
  PyObject* pRetVal = NULL;
  int   iRetVal = 0;
  //導入模塊
  pMod = PyImport_ImportModule("FuncDef");
  if(pMod)
  {
  pFunc = PyObject_GetAttrString(pMod, "square");
  if(pFunc)
  {
  //創建參數
  pParm = Py_BuildValue("(i)", 5);
  //函數調用
  pRetVal = PyEval_CallObject(pFunc, pParm);
  //解析返回值
  PyArg_Parse(pRetVal, "i", &iRetVal);
  cout << "square 5 is: " << iRetVal << endl;
  }
  else
  {
  cout << "cannot find function square" << endl;
  }
  }
  else
  {
  cout << "cannot find FuncDef.py" << endl;
  }
  }

//調用多參數函數

 void InvokeWith3Parm()
  {
  PyObject* pMod = NULL;
  PyObject* pFunc = NULL;
  PyObject* pParm = NULL;
  PyObject* pRetVal = NULL;
  int   iRetVal = 0;
  //導入模塊
  pMod = PyImport_ImportModule("add");
  if(pMod)
  {
  pFunc = PyObject_GetAttrString(pMod, "add");
  if(pFunc)
  {
  //創建兩個參數
  pParm = PyTuple_New(2);
  //為參數賦值
  PyTuple_SetItem(pParm, 0, Py_BuildValue("i",2000));
  PyTuple_SetItem(pParm, 1, Py_BuildValue("i",3000));
  //函數調用
  pRetVal = PyEval_CallObject(pFunc, pParm);
  //解析返回值
  PyArg_Parse(pRetVal, "i", &iRetVal);
  cout << "2000 + 3000 = " << iRetVal << endl;
  }
  else
  {
  cout << "cannot find function square" << endl;
  }
  }
  else
  {
  cout << "cannot find add.py" << endl;
  }
  }
 int main(int argc, char* argv[])
  {
  Py_Initialize(); //python 解釋器的初始化
  ExecPythonCommand();
  InvokeNoParm();
  InvokeWith2Parm();
  InvokeWith3Parm();
  Py_Finalize();  // 垃圾回收、清除導入庫
  return 0;
  }

看完上述內容,你們掌握C++項目中怎么調用python函數的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宣汉县| 沛县| 大城县| 三亚市| 浪卡子县| 城口县| 山东| 枣阳市| 运城市| 罗山县| 壤塘县| 聂拉木县| 彰武县| 苏州市| 新野县| 廉江市| 沂水县| 临清市| 翼城县| 新平| 林芝县| 溆浦县| 株洲县| 巴林左旗| 九龙城区| 巴南区| 宿迁市| 岫岩| 桦川县| 南投市| 上杭县| 庆城县| 荆门市| 海南省| 沧源| 财经| 永寿县| 漾濞| 吉林省| 南安市| 湘阴县|