catch 发表于 2014-6-27 15:19:50

大家说结构体里面的结构体是用来做什么的?

本帖最后由 catch 于 2014-6-27 15:21 编辑

struct Test{
      struct Test1 *t1;
      struct Test2 *t2;
      struct Test3 *t3;
      struct Test4 *t4;
      struct Test5 *t5;
      struct Test *t;
};大家说上面的结构体一般用于实现什么功能?

戏++ 发表于 2014-6-28 06:26:11

用于解决一些复杂的数据结构吧
具体实现什么功能那就千差万别了,具体问题具体分析的
页: [1]
查看完整版本: 大家说结构体里面的结构体是用来做什么的?