ctypes包含数组的结构

ctypes包含数组的结构,第1张

ctypes包含数组的结构

代码有2个问题(如我在评论中所述):

  1. print_array_struct.argtype- 不正确
  2. Ç 的阵列 为主,而在 Python中 它们是 ctypes.c_intINT )的基础

有关更多详细信息,请参见[Python 3.Docs]:ctypes-
Python的外部函数库

我修改了您的 Python 代码,以纠正上述错误(以及其他一些小问题)。

pre00.py

#!/usr/bin/env python3import sysimport ctypesDLL_NAME = "./my_so_object.so"DOUBLE_10 = ctypes.c_double * 10class ArrayStruct(ctypes.Structure):    _fields_ = [        ("first_array", DOUBLE_10),        ("second_array", DOUBLE_10),    ]def main():    dll_handle = ctypes.CDLL(DLL_NAME)    print_array_struct_func = dll_handle.print_array_struct    print_array_struct_func.argtypes = [ArrayStruct]    print_array_struct_func.restype = None    x1 = DOUBLE_10()    x2 = DOUBLE_10()    x1[:] = range(1, 11)    x2[:] = range(11, 21)    print([item for item in x1])    print([item for item in x2])    arg = ArrayStruct(x1, x2)    print_array_struct_func(arg)if __name__ == "__main__":    print("Python {:s} on {:s}n".format(sys.version, sys.platform))    main()

输出

[cfati@cfati-ubtu16x64-0:~/Work/Dev/StackOverflow/q050447199]> python3

pre00.py
Python 3.5.2 (default, Nov 23 2017, 16:37:01)
[GCC 5.4.0 20160609] on linux

[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0][11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0]1.0000002.0000003.0000004.0000005.0000006.0000007.0000008.0000009.00000010.000000

更新 #0

错误 #1。 是( 较新的
)[SO]的“重复”
:通过ctypes从Python调用的C函数返回错误的值(@CristiFati的回答)。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5618137.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存