Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在VC++/MFC应用程序中嵌入 Python。如果是的话,你能告诉我怎么做吗?
VC++/MFC
是的,您可以将 python 嵌入到任何可以从 C 库调用函数的应用程序中。您使用 MFC 的事实对此并不重要。
这方面的官方 python 文档非常好:
关于如何做到这一点:基本上你只需调用Py_Initialize();初始化 Python,然后用它做任何你想做的事情。Py_Finalize();在您的应用程序退出之前,调用清理内容是个好主意。
Py_Initialize();
Py_Finalize();