码迷,mamicode.com
首页 > 编程语言 > 详细

python调用其他语言教程:

时间:2014-12-05 18:58:23      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   strong   on   div   log   

python调用其他语言教程:

 


 

调用C语言:

  注意要安装 python-dev (sudo apt-get install python-dev)  

#include <Python.h>

int fact(int n)
{
  if (n <= 1)
    return 1;
  else
    return n * fact(n - 1);
}

PyObject* wrap_fact(PyObject* self, PyObject* args)
{
  int n, result;

  if (! PyArg_ParseTuple(args, "i:fact", &n))
    return NULL;
  result = fact(n);
  return Py_BuildValue("i", result);
}

static PyMethodDef exampleMethods[] =
{
  {"fact", wrap_fact, METH_VARARGS, "Caculate N!"},
  {NULL, NULL}
};

void initexample()
{
  PyObject* m;
  m = Py_InitModule("example", exampleMethods);
}

 

  gcc -fPIC test.c -o example.so -shared  -I/usr/include/python2.7 -I/usr/lib/python2.7/config  

 


 

python调用其他语言教程:

标签:style   blog   ar   color   sp   strong   on   div   log   

原文地址:http://www.cnblogs.com/canbefree/p/4147224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!