【发布时间】:2017-05-20 11:44:20
【问题描述】:
typedef struct treeNodeListCell {
treeNode *node;
struct treeNodeListCell *next;
}treeNodeListCell;
typedef struct treeNode{
imgPos position;
treeNodeListCell *next_possible_positions;
}treeNode;
typedef struct segment{
treeNode *root;
}Segment;
我对上面结构的前向声明感到很困惑,如何使用当前声明?
【问题讨论】:
标签: c struct forward-declaration