Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はC++に取り組んでいます: 以下はコードスニペットです:
class my { union o { int i; unsigned int j; }; union f { int a; unsigned int b; }; };
クラス「my」のサイズが1バイトであることがわかりました。値が 1 バイトである理由がわかりません。誰でもこの結果を説明できますか?