摘要: #include<iostream> using namespace std; //相同的内存地址 union myun { struct { int x; int y; int z; }u; int k; }a; int main() { a.u.x =4; a.u.y =5; a.u.z =6; 阅读全文
posted @ 2021-05-25 16:00 略略略—— 阅读(266) 评论(0) 推荐(0) 编辑