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

Python3 ctypes简单使用

时间:2015-08-14 11:51:20      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:python   ctypes   

>>> from ctypes import *
>>> c_int()
c_long(0)
>>> c_char_p(b'hello')
c_char_p(b'hello')
>>> c_ushort(-5)
c_ushort(65531)
>>> seitz = c_char_p(b'loves the python')
>>> print(seitz)
c_char_p(b'loves the python')
>>> print(seitz.value)
b'loves the python'

最后一个示例将一个指向字符串‘loves the python‘的ctype指针赋给变量作值seutz.随后我们通过访问seitz.value方法获取指针所指向的内容,我们称这个过程为解除引用(dereferencing)一个指针



未完待续...

未经作者同意不得转载

版权声明:本文为博主原创文章,未经博主允许不得转载。

Python3 ctypes简单使用

标签:python   ctypes   

原文地址:http://blog.csdn.net/u013511642/article/details/47657519

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