- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试实现一个 python 接口(interface)。我对 c 结构的定义有疑问。如何在主结构中生成内部结构(LinV)?
手册中的定义:
typedef struct
{
float MaxExcitation;
struct LinVal
{
double MeasValue;
double RefValue;
} LinV[SEN_LIN_DATA_MAX];
} Data;
python 代码:
class LinV(Structure):
_fields_ = [('NeasValue', c_double),
('RefValue', c_double)]
class Data(Structure):
_fields_ = [('MaxExcitation', c_float),
('LinV', ???????)]
谢谢马库斯
最佳答案
你只需乘以指定数组:
from ctypes import *
SEN_LIN_DATA_MAX = 3
class LinV(Structure):
_fields_ = [('NeasValue', c_double),
('RefValue', c_double)]
class Data(Structure):
_fields_ = [('MaxExcitation', c_float),
('LinV', LinV * SEN_LIN_DATA_MAX)]
d = Data(2.0,
(LinV(1.2, 3.2),
LinV(2.2, 2.2),
LinV(3.2, 1.2),
))
关于python:c-struct 和 wintypes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42490021/
我的代码: coord = ctypes.windll.kernel32.GetLargestConsoleWindowSize(console_handle) coord 的真实类型是 ctypes
我在 Delphi 2009 IDE 中每天多次收到错误:wintypes.dcu not find,此错误代码补全停止工作后,我也无法使用 Ctrl + Click 打开任何单元的源代码,然后我必须
我正在尝试实现一个 python 接口(interface)。我对 c 结构的定义有疑问。如何在主结构中生成内部结构(LinV)? 手册中的定义: typedef struct { float Max
为什么下面每个字符后面都有一个空格? C++ 动态链接库 测试.h: #ifndef TEST_DLL_H #define TEST_DLL_H #define EXPORT __declspec(d
当我尝试导入 ctypes.wintypes 时出现此错误,我该如何解决? In [2]: import ctypes.wintypes -------------------------------
这是我的代码的一部分: import os def _get_appdata_path(): import ctypes from ctypes import wintypes, wi
我是一名优秀的程序员,十分优秀!