写 链表 注意事项

1 struct MyStruct
{
int num;
struct MyStruct *point;
};

point 自己调用自己类型,在vs 上实验,当 point 没有 * 的时候报错,有的时候 不报错;

发布了31 篇原创文章 · 获赞 4 · 访问量 825

猜你喜欢

转载自blog.csdn.net/aningxiaoxixi/article/details/100072238