コンテンツへ
詳細検索ページへ移動する
コード:
#include <iostream> #include <string> using namespace std; class A { public: A() {}; ~A() {}; std::string str1; union { std::string str2; }; }; int main() { A a; a.str1 = "Hello"; a.str2 = a.str1; }