联合

联合样子和结构体长得一样,但是结构体可以存储里面所有数据,而联合只能存储其中一个数据:

union Code{

std::string first;

std::string sec;

};

main()

{

Code code;

code.first=“”12345“”;

code.sec="54321";

//此时code里只有sec这个数据,而first被覆盖了

}

posted @ 2016-09-19 09:53  朱小勇  阅读(162)  评论(0编辑  收藏  举报