设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 550|回复: 3
打印 上一主题 下一主题

[求助]C++基础问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:28:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我从课本上抄的例题有错误,希望大虾们帮解决一下
#include <iostream>
using namespace std;
class B1
{
public :
B1(int i){cout<<" 构建B1:"<<i<<endl;
~B1(){cout<<" 析构B1:"<<endl;
};
class B2
{
public:
B2(int j ){cout<<"构建 B2:"<<j<<endl;
~B2(){cout <<"析构B2:"<<endl;
};
class B3
{public :
B3(){cout <<"构建 B3:*"<<endl;
~B3(){cout <<"析构 B3:"<<endl;
};
class C:public B2,public B1,public B3
{public :
C(int a,int b,int c,int d):B1(a),memberB2(d),memberB1(c),B2(b){}
private :
B1 memberB1;
B2 memberB2;
B3 memberB3;
};
void main ()
{C m1(1,2,3,4);
}
错误调试:
--------------------Configuration: 2 - Win32 Debug--------------------
Compiling...
2.cpp
D:\学习文件\例7-6\2.cpp(32) : fatal error C1075: end of file found before the left brace '{' at 'D:\学习文件\例7-6\2.cpp(17)' was matched
执行 cl.exe 时出错.
2.obj - 1 error(s), 0 warning(s)
2#
发表于 2009-11-4 00:28:22 | 只看该作者
B2(int j ){cout&lt;&lt;"构建 B2:"&lt;&lt;j&lt;&lt;endl;     //}    掉了个符号
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-4 00:28:23 | 只看该作者
你的B1 B2 B3 的构造函数和析构函数都只有 { 没有 “}” ,
都加上就没有错误了
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-4 00:28:24 | 只看该作者
谢谢!以后还会有问题麻烦你们,不要烦我啊!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 06:25 , Processed in 0.064484 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表