嵌套结构问题
如何在结构中创建节点数组。 我上传了我的样本。
struct timebasedSpecificTimesIntervalNode
{
int hrs;
int min;
int sec;
};
struct timebasedSpecificTimesInterval
{
struct timebasedSpecificTimesIntervalNode* nodes;
int count;
char *cFilePath;
};
如何为此结构 timebasedSpecificTimesInterval 创建节点数组。
struct timebasedSpecificTimesInterval specificTimes;
如何为此结构创建 3 个节点的数组。
编辑
为此值创建结构
hrs:5,2,3 min 23,58,4 sec 54,12,2
谢谢
How to create array of nodes in the structure.
I uploaded my sample.
struct timebasedSpecificTimesIntervalNode
{
int hrs;
int min;
int sec;
};
struct timebasedSpecificTimesInterval
{
struct timebasedSpecificTimesIntervalNode* nodes;
int count;
char *cFilePath;
};
How to create array of nodes for this structure timebasedSpecificTimesInterval.
struct timebasedSpecificTimesInterval specificTimes;
How to create array of 3 nodes to this structure.
EDIT
create structure for this values
hrs:5,2,3 min 23,58,4 sec 54,12,2
Thnks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
编辑:OP中提供的使用示例
EDIT: used example provided in OP
我就是这样做的。除非我完全搞错了方向。我不喜欢在我的代码中乱扔新的 struct 关键字。
This is how I would do it. Unless I have completely the wrong end of the stick. I am not a fan of the new struct keyword littering my code.
除非我误解了这个问题......就像您对任何其他数组一样:
Unless I'm misunderstanding the question... just like you would any other array: