- #include
- using namespace std;
- class Empty{
- public:
- Empty(); //默认构造函数
- Empty(const Empty&); //默认拷贝构造函数
- ~Empty(); //默认析构函数
- Empty&operator=(const Empty&); //默认赋值运算符
- Empty*operator&(); //默认取址运算符
- const Empty*operator&()const; //默认const取址运算
- };
- int main()
- {
-
- return 0;
- }