我试图将C样式的const char []字符串指针(从DLL返回)转换为Python兼容的字符串类型。但是当Python27执行时:
import ctypes
charPtr = ctypes.cast( "HiThere", ctypes.c_char_p )
print( "charPtr = ", charPtr )
我们得到:charPtr = c_char_p('HiThere')
也许某些事情无法正确评估。 我的问题是:
答案 0 :(得分:10)
ctypes.cast()用于将一个ctype实例转换为另一个ctype数据类型。 你不需要它将它转换为python字符串。 只需使用“.value”来获取python字符串。
>>> s = "Hello, World"
>>> c_s = c_char_p(s)
>>> print c_s
c_char_p('Hello, World')
>>> print c_s.value
Hello, World
更多信息here
答案 1 :(得分:7)
如果设置argtypes
函数的restype
或ctypes
属性,它们将返回正确的Python对象,而无需进行强制转换。
以下是调用C运行时time
和ctime
函数的示例:
>>> from ctypes import *
>>> m=CDLL('msvcrt')
>>> t=c_long(0)
>>> m.time(byref(t))
1326700130
>>> m.ctime(byref(t)) # restype not set
6952984
>>> m.ctime.restype=c_char_p # set restype correctly
>>> m.ctime(byref(t))
'Sun Jan 15 23:48:50 2012\n'