一、选择
1、运算符重载:(1)不可重载:. .* :: ?: sizeof
(2)只成员函数:=、[]、()、->
ps:=和[]需要加&,=返回类,[]返回中括号内数的类型
如:Integer &operator =(Integer & i);
(3)只友元:<< >>
例:friend ostream &operator <<(ostream &output,Integer &i);
ostream &operator <<(ostream &output,Integer &i)
{
output<<"neirong"<<endl;
return output;
}
二、编程
1、类:注意构造函数和析构函数的使用;
2、运算符重载:注意插入和提取运算符。
3、多态:注意虚函数和纯虚函数:
Animal *p;
Cat c(a,b);
p=&c;
p->show();
4、文件:六步走!注意构造函数可能用于读文件(count),析构函数用于写文件(循环)
三、综合题
1、调用拷贝构造函数:传值、返回的是类的类型(注意匿名对象的析构)