Q为什么不
struct x { ... }; x thestruct;
AC 不是 C++。结构体标签的 typedef 名称不会自动生成。请使用struct关键字声明结构体实例
struct x thestruct;
typedef struct { ... } x; x thestruct;
由 托管