struct POINTA { unsigned int x; unsigned int y; }; struct POINTB { unsigned int y; unsigned int z; }; int main ( void ) { unsigned int pot_y; //遵循1 struct POINTB spotb; //遵循2 pot_y = 1; spotb.y = pot_y; return ( 0 ); }