行云

行至水穷处,坐看云起时。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

 

from ctypes import *

TenIntArrayType = c_int * 10 #相当于定义了一个int[10]类型
arr = TenIntArrayType()
#访问方法
for ii in arr:
print (ii)

#或者
for ii in range(10):
print (arr[ii])

lib = cdll.LoadLibrary("dll.so")
#取指针
lib.PrintData(pointer(arr), 10)

ctypes基本数据类型:定义了对应于C内置类型的相应类型
http://docs.python.org/release/2.5/lib/module-ctypes.html
...

posted on 2012-03-16 22:02  windflying  阅读(4016)  评论(0编辑  收藏  举报