CPlusPlusThings/english/basic_content/union/README.md
2020-07-20 23:54:33 +08:00

20 lines
677 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Story About Union
![](../img/wechat.jpg)
Unionis a space saving special class.A union can have multiple data members.However, only one data member can have a value at any time. When a member is assigned a value, other members become undefined.
- The default access control character is public
- It can contain constructors and destructors
- Cannot contain a member of a reference type
- Cannot inherit from other classes, cannot be a base class
- Cannot contain virtual functions
- Anonymous union can directly access union members in the scope of definition
- Anonymous union cannot contain protected or private members
- Global anonymous union must be static