C++空類詳解。本站提示廣大學習愛好者:(C++空類詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是C++空類詳解正文
空類默許發生的成員:
class Empty {};
Empty(); // 默許結構函數
Empty( const Empty& ); // 默許拷貝結構函數
~Empty(); // 默許析構函數
Empty& operator=( const Empty& ); // 默許賦值運算符
Empty* operator&(); // 取址運算符
const Empty* operator&() const; // 取址運算符 const
給出一個例子:
#include<iostream>
using namespace std;
class Empty
{
public:
Empty *operator&()
{
cout<<"AAAA"<<endl;
return this;
}
const Empty* operator&() const
{
cout<<"BBBB"<<endl;
return this;
}
};
int main(void)
{
Empty e;
Empty *p=&e;
const Empty e2;
const Empty *p2=&e2;
cout<<sizeof(Empty)<<endl;
}
運轉成果: