Developer
未读
Python 调用C/C++
Python3 中提供了 ctypes 模块,它支持与 C 兼容的数据类型,可以用来加载 C/C++ 动态库。 C代码 test.h extern int add(int, int);
test.c <!--more--> #include "test.h"
int add(int arg1, i