作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 C++
应用程序中,我想调用一个 Python
脚本来做一些处理工作。我在 Google 中搜索过,发现有两种方法可以做到这一点:
(1). use the `system` command. Just like this, `system('python myscript.py');`
(2). use the `PyRun_SimpleString("execfile('myscript.py')");`
我想问一下,哪种方式更好,有没有更好的方式来完成这项工作?
谢谢。
最佳答案
I want to ask that, which way is better and is there any better way to do this work?
您应该注意到 python 引擎是用 C 编写的,因此提供了一个 native C-API .这使您可以通过调用函数和使用 Python 对象更直接地与 Python 代码交互。
如果您想从 C++ 代码集成它而不用麻烦 C-API,可以使用出色且易于使用的 boost::python图书馆。
关于python - 如何在 C++ 代码中调用 python 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22603141/
我是一名优秀的程序员,十分优秀!