Auteur:Mon oncle.
Blogs:https://xuhss.com
Le petit - déjeuner n'est pas ouvert la nuit,Celui qui veut manger est déjà là!
Intest.py
Ajouter une classe,Pour être utilisé parC++Appeler l'accès:
print('test.py')
class TypePy:
def __init__(self):
print("TypePy init")
def test(self):
print("TypePy test")
{
// Obtenir la classe
PyObject* TypePy = PyObject_GetAttrString(m, "TypePy");
if (!TypePy) {
throw exception("TypePy noe find!");
}
// Objet instantané équivalent à appeler un constructeur __init__ Passer les arguments du constructeur NULL
PyObject *obj = PyObject_CallObject(TypePy, NULL);
if (!obj) {
throw exception("obj not Create!");
}
// Appelez la fonction membre de la classe
PyObject_CallMethod(obj, "test", 0);
Py_XDECREF(obj);
Py_XDECREF(TypePy);
}
Exécution:
Vous pouvez voir la sortie de la chaîne désirée
Modifiertest.py
Classe dansTypePy
Fonctions danstestParamètres et valeurs de retour pour:
class TypePy:
def __init__(self):
print("TypePy init")
def test(self, arg1, arg2):
print("TypePy test")
print("arg1 = ", arg1)
print("arg2 = ", arg2)
return 1003
C++ Ajouter à un seul paramètre PythonAppel de classe
// Appelez la fonction membre de la classe i(int) s(string)
PyObject *re = PyObject_CallMethod(obj, "test", "is", 2001, "c Para2");
cout << "PyObject_CallMethod return" << PyLong_AsLong(re) << endl;
Py_XDECREF(re);
Exécution:
Ajoutertest.py
Variable membre de classe dans
class TypePy:
id = 99
def __init__(self):
print("TypePy init")
def test(self, arg1, arg2):
print("TypePy test")
print("arg1 = ", arg1)
print("arg2 = ", arg2)
return 1003
C++Ajouter une pairePythonAccès aux variables des membres de la classe
// Accéder aux variables des membres
PyObject* var = PyObject_GetAttrString(obj, "id");
cout << "TypePy.id=" << PyLong_AsLong(var) << endl;
Py_XDECREF(var);
Exécution:
#include <iostream>
#include <Python.h>
#include <exception>
using namespace std;
int main(int argc, char*argv[])
{
cout << "C++ call Python" << endl;
// ParamètresPythonDeHomeChemin
Py_SetPythonHome(L"./");
// PythonInitialiser l'interpréteur
Py_Initialize();
PyObject *m = NULL; // Module principal
try
{
int re = 0;
// Mise en œuvrePythonScript
re = PyRun_SimpleString("print('Hello world!')");
re = PyRun_SimpleString("print(\"__name__ = \", __name__)");
// Mise en œuvrePythonDocumentation
char* filename = "test.py";
FILE * fp = fopen(filename, "r");
if (!fp)
{
throw exception("open file failed");
}
PyRun_AnyFile(fp, filename);
if (re != 0)
{
PyErr_Print();
throw exception("PyRun_AnyFile failed");
}
// Obtenir le module principal
PyObject *key = PyUnicode_FromString("__main__");
m = PyImport_GetModule(key); // Ne pas nettoyer les paramètres ,Nettoyage manuel nécessaire
Py_XDECREF(key);
// 2-1 AppelezpythonVariable de pythonFaire un profil
//con = {
// "width":1920,
// "heigth" : 1080,
// "title" : "C++ call Python"
//}
{
// Obtenir des objets par module et nom (L'objet peut être une variable、Fonctions et classes)
PyObject* conf = PyObject_GetAttrString(m, "conf");
if (!conf) {
throw exception("conf noe find!");
}
PyObject *key = PyUnicode_FromString("width");
int width = PyLong_AsLong(PyDict_GetItem(conf, key));
Py_XDECREF(key);
key = PyUnicode_FromString("height");
int height = PyLong_AsLong(PyDict_GetItem(conf, key));
Py_XDECREF(key);
key = PyUnicode_FromString("title");
wchar_t title[1024] = {
0 };
int size = PyUnicode_AsWideChar(PyDict_GetItem(conf, key), title, 1023);
Py_XDECREF(key);
printf("width=%d height=%d \n", width, height);
wprintf(L"title=%s\n", title);
Py_XDECREF(conf);
}
{
// Obtenir la classe
PyObject* TypePy = PyObject_GetAttrString(m, "TypePy");
if (!TypePy) {
throw exception("TypePy noe find!");
}
// Objet instantané équivalent à appeler un constructeur __init__ Passer les arguments du constructeur NULL
PyObject *obj = PyObject_CallObject(TypePy, NULL);
if (!obj) {
throw exception("obj not Create!");
}
// Appelez la fonction membre de la classe i(int) s(string)
PyObject *re = PyObject_CallMethod(obj, "test", "is", 2001, "c Para2");
cout << "PyObject_CallMethod return" << PyLong_AsLong(re) << endl;
Py_XDECREF(re);
// Accéder aux variables des membres
PyObject* var = PyObject_GetAttrString(obj, "id");
cout << "TypePy.id=" << PyLong_AsLong(var) << endl;
Py_XDECREF(var);
Py_XDECREF(obj);
Py_XDECREF(TypePy);
}
Py_XDECREF(m);
// Nettoyagepython
Py_Finalize();
}
catch (const std::exception&ex)
{
cout << ex.what() << endl;// Nettoyagepython
Py_XDECREF(m);
Py_Finalize();
}
getchar();
return 0;
}
- Oui.
Collection
Avant
Une vague,Les blogueurs soutiennent également la création de fonds d'écran dynamiques exclusifs pour les fans de fer~Suivez les cartes ci - dessous pour en savoir plus sur la programmation,.Comprend divers matériels d'apprentissage des langues,Des milliers.PPTTemplates and various Game source Materials and other materials.Plus d'informations à consulter par vous - même!