24小时热门版块排行榜    

查看: 285  |  回复: 2
当前主题已经存档。

zhanglei22

银虫 (小有名气)

[交流] 【求助】帮我看下vc++ 6.0的这个类继承哪里出问题了?【已完结】

#include


class Box
{
        int width,height;
public:
        void SetWith(int w)
        {
                width=w;
        }
        void SetHeight(int h)
        {
                height=h;
        }
        int GetWidth(){return width;}
        int GetHeight(){return height;}
};

class ColoredBox:public Box
{
        int color;
public:
        voidSetColor(int c)
        {
                color=c;
        }
        int GetColor(){return color;}
};

main(void)
{
        ColoredBox cbox;
        cbox.SetColor(3);
        cbox.SetWidth(150);
        cbox.SetHeight(100);

        cout<<"cbox:"<         cout<<"color:"<         cout<<"width:"<         cout<<"Height:"< }


--Configuration: 1019 - Win32 Debug--------------------
Compiling...
10191.cpp
c:\program files\microsoft visual studio\myprojects\1019\10191.cpp(27) : warning C4183: 'voidSetColor': member function definition looks like a ctor, but name does not match enclosing class
c:\program files\microsoft visual studio\myprojects\1019\10191.cpp(34) : error C2039: 'SetColor' : is not a member of 'ColoredBox'
        c:\program files\microsoft visual studio\myprojects\1019\10191.cpp(20) : see declaration of 'ColoredBox'
c:\program files\microsoft visual studio\myprojects\1019\10191.cpp(35) : error C2039: 'SetWidth' : is not a member of 'ColoredBox'
        c:\program files\microsoft visual studio\myprojects\1019\10191.cpp(20) : see declaration of 'ColoredBox'
c:\program files\microsoft visual studio\myprojects\1019\10191.cpp(42) : warning C4508: 'main' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.

1019.exe - 1 error(s), 0 warning(s)

[ Last edited by 余泽成 on 2010-1-28 at 10:45 ]
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

senlia

木虫 (小有名气)

★ ★ ★
nono2009(金币+2,VIP+0):谢谢专家! 10-19 21:36
zhanglei22(金币+1,VIP+0): 10-20 16:29
class ColoredBox里面 voidSetColor(int c)的void 后面没打空格
class Box里面 SetWith应该是SetWidth
另外 main(void)是不是该写成void main()
这些都是表面的错误 看你贴出来的错误提示得到的 至于还有没有别的错误 我不清楚 因为我这里没有能用的编译软件 你先改改试试吧 不行再和大家讨论讨论

[ Last edited by senlia on 2009-10-19 at 21:26 ]
书到用时方恨少, 天涯何处无芳草.
2楼2009-10-19 21:23:36
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

magic7004

金虫 (职业作家)

晕,居然都是拼写错误,搂住也太粗心了。
流氓不可怕,可怕的是流氓有文化,有文化又BH的流氓无敌~~!
3楼2009-10-20 10:54:42
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 zhanglei22 的主题更新
普通表情 高级回复(可上传附件)
信息提示
请填处理意见