class Empty
{
public:
Empty(); // 缺省構造函數
Empty( const Empty& ); // 拷貝構造函數
~Empty(); // 析構函數
Empty& operator=( const Empty& ); // 賦值運算符
Empty* operator&(); // 取址運算符
const Empty* operator&() const; // 取址運算符 const
};
posted on 2008-10-08 15:14
xuejzt 閱讀(1441)
評論(0) 編輯 收藏 引用 所屬分類:
面試