好像我错了。。。
我理解了重载,加了这个
void Cat::SetWeight(int w)
{
weight=w;}
void Cat::Eat()
{
cout<<"I eat mouse "<<endl;}
void Cat::Eat(char na[])
{
cout<<"also eat mouse named"<<na<<endl;}(cat.h)中
在main中加了:
c1.PrintInfo();
c1.Eat();
c1.Eat("c++");
就可以了!!!!!!!
[
本帖最后由 c语言总虐我 于 2015-5-1 22:30 编辑 ]