C++/C编程质量试题C++/C试题
本试题仅用于考查C++/C程序员的基本编程技能。内容限于C++/C常用语法,不涉及数据结构、算法以及深奥的语法。考试成绩能反映出考生的编程质量以及对C++/C的理解程度,但不能反映考生的智力和软件开发能力。
笔试时间90分钟。请考生认真答题,切勿轻视。
一、请填写BOOL , float, 指针变量 与“零值”比较的 if 语句。(10分)
提示:这里“零值”可以是0, 0.0 , FALSE或者“空指针”。例如 int 变量 n 与“零值”比较的 if 语句为:
if ( n == 0 )
if ( n != 0 )
以此类推。
请写出 BOOL flag 与“零值”比较的 if 语句:
请写出 float x 与“零值”比较的 if 语句:
请写出 char *p 与“零值”比较的 if 语句:
二、以下为Windows NT下的32位C++程序,请计算sizeof的值(10分)
char str[] = “Hello” ;
char *p = str ;
int n = 10;
请计算
sizeof (str ) =
sizeof ( p ) =
sizeof ( n ) =
void Func ( char str[100])
{
请计算
sizeof( str ) =
}
void *p = malloc( 100 );
请计算
sizeof ( p ) =
三、简答题(25分)
1、头文件中的 ifndef/define/endif 干什么用?
2、#include <filename.h> 和 #include “filename.h” 有什么区别?
3、const 有什么用途?(请至少说明两种)
4、在C++ 程序中调用被 C编译器编译后的函数,为什么要加 extern “C”声明?
5、请简述以下两个for循环的优缺点
// 第一个
for (i=0; i<N; i++)
{
if (condition)
DoSomething();
else
DoOtherthing();
}
// 第二个
if (condition)
{
for (i=0; i<N; i++)
DoSomething();
}
else
{
for (i=0; i<N; i++)
DoOtherthing();
}
优点:
缺点:
优点:
缺点:
四、有关内存的思考题(20分)
void GetMemory(char *p)
{
p = (char *)malloc(100);
}
void Test(void)
{
char *str = NULL;
GetMemory(str);
strcpy(str, "hello world");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:
char *GetMemory(void)
{
char p[] = "hello world";
return p;
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}
请问运行Test函数会有什么样的结果?
答:
Void GetMemory2(char **p, int num)
{
*p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:
void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, “hello”);
free(str);
if(str != NULL)
{
strcpy(str, “world”);
printf(str);
}
}
请问运行Test函数会有什么样的结果?
答:
五、编写strcpy函数(10分)
已知strcpy函数的原型是
char *strcpy(char *strDest, const char *strSrc);
其中strDest是目的字符串,strSrc是源字符串。
(1)不调用C++/C的字符串库函数,请编写函数 strcpy
(2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值?
六、编写类String的构造函数、析构函数和赋值函数(25分)
已知类String的原型为:
class String
{
public:
String(const char *str = NULL); // 普通构造函数
String(const String &other); // 拷贝构造函数
~ String(void); // 析构函数
String & operate =(const String &other); // 赋值函数
private:
char *m_data; // 用于保存字符串
};
请编写String的上述4个函数。
2005-3-16 23:09:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21015','4','backer','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>(1)如果你只得了几十分,请不要声张,也不要太难过。编程质量差往往是由于不良习惯造成的,与人的智力、能力没有多大关系,还是有药可救的。成绩越差,可以进步的空间就越大,中国不就是在落后中赶超发达资本主义国家吗?只要你能下决心改掉不良的编程习惯,第二次考试就能及格了。</P><P>(2)如果你考及格了,表明你的技术基础不错,希望你能虚心学习、不断进步。</P><P>(3)如果你考出85分以上的好成绩,你有义务和资格为你所在的团队作“C++/C编程”培训。希望你能和我们多多交流、相互促进。</P><P>(4)如果你在没有任何提示的情况下考了满分,希望你能收我做你的徒弟。</P>','2005-3-16 23:17:00','face1.gif','*.*.*.*','5155',1,0,1980,2,'职业侠客','32','32','316','2004-8-22','1704','813','696','','1',0,'0','level4.gif',4,'2005-3-26 16:18:00','0',1,'tablebody2','0','0'));
backer 等级:职业侠客
文章:316
积分:813
注册:2004-8-22
第 2 楼
(1)如果你只得了几十分,请不要声张,也不要太难过。编程质量差往往是由于不良习惯造成的,与人的智力、能力没有多大关系,还是有药可救的。成绩越差,可以进步的空间就越大,中国不就是在落后中赶超发达资本主义国家吗?只要你能下决心改掉不良的编程习惯,第二次考试就能及格了。
(2)如果你考及格了,表明你的技术基础不错,希望你能虚心学习、不断进步。
(3)如果你考出85分以上的好成绩,你有义务和资格为你所在的团队作“C++/C编程”培训。希望你能和我们多多交流、相互促进。
(4)如果你在没有任何提示的情况下考了满分,希望你能收我做你的徒弟。
2005-3-16 23:17:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21016','4','sunxin','','','
[email protected]','','','UploadFace/3_200491312414392596.jpg','','','','','<P>难得有机会学习,希望大家踊跃答题,把你的答案贴上来,backer兄在差不多的时候,会给出标准答案。不要错过一次非常好的学习机会。 </P>','2005-3-16 23:27:00','face1.gif','*.*.*.*','5155',1,0,3,2,'管理员','96','96','866','2004-7-6','2890','1864','1860','','1',0,'0','level10.gif',1,'2005-3-26 12:56:00','0',2,'tablebody1','0','0'));
sunxin 等级:管理员
文章:866
积分:1864
注册:2004-7-6
第 3 楼
难得有机会学习,希望大家踊跃答题,把你的答案贴上来,backer兄在差不多的时候,会给出标准答案。不要错过一次非常好的学习机会。
2005-3-16 23:27:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21017','4','backer','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>这套试卷的作者是上海贝尔的林瑞博士,在很久的时候就流传在网上了,希望有见过或者是做过的朋友不要声张,呵呵,以便让没见过的朋友有个测试自己能力的机会,谢谢</P><br><img SRC="skins/default/filetype/rar.gif" border=0 onmousewheel="return bbimg(this)" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;"> <a href="viewFile.asp?Boardid=4&ID=417" target=_blank>点击浏览该文件</a><br><br><div align=right><font color=#000066>[此贴子已经被作者于2005-3-16 23:31:11编辑过]</font></div>','2005-3-16 23:29:00','face1.gif','*.*.*.*','5155',1,0,1980,2,'职业侠客','32','32','316','2004-8-22','1704','813','696','','1',0,'0','level4.gif',4,'2005-3-26 16:18:00','0',3,'tablebody2','0','0'));
backer 等级:职业侠客
文章:316
积分:813
注册:2004-8-22
第 4 楼
这套试卷的作者是上海贝尔的林瑞博士,在很久的时候就流传在网上了,希望有见过或者是做过的朋友不要声张,呵呵,以便让没见过的朋友有个测试自己能力的机会,谢谢
点击浏览该文件
[此贴子已经被作者于2005-3-16 23:31:11编辑过] 2005-3-16 23:29:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21045','4','gamenpc','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','做好了,现在等的就是backer兄的答案。','2005-3-17 10:16:00','face1.gif','*.*.*.*','5155',1,0,3603,2,'新手上路','32','32','3','2004-9-26','1007','213','37','','1',0,'0','level0.gif',4,'2005-3-21 10:15:00','0',4,'tablebody1','0','0'));
gamenpc 等级:新手上路
文章:3
积分:213
注册:2004-9-26
第 5 楼
做好了,现在等的就是backer兄的答案。 2005-3-17 10:16:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21099','4','esken','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','怎么这里出的题目总是没有答案的吗?<img src=Skins/Default/emot/em03.gif border=0 align=middle onmousewheel="return bbimg(this)" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;">','2005-3-17 15:26:00','face1.gif','*.*.*.*','5155',1,0,13510,2,'新手上路','32','32','4','2005-3-17','1012','225','40','','1',0,'0','level0.gif',4,'2005-3-18 14:10:00','0',5,'tablebody2','0','0'));
esken 等级:新手上路
文章:4
积分:225
注册:2005-3-17
第 6 楼
怎么这里出的题目总是没有答案的吗? 2005-3-17 15:26:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21164','4','backer','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P><b><FONT color=#000066>请做好了的朋友把解答发上来看看</FONT></b></P>','2005-3-17 22:24:00','face1.gif','*.*.*.*','5155',1,0,1980,2,'职业侠客','32','32','316','2004-8-22','1704','813','696','','1',0,'0','level4.gif',4,'2005-3-26 16:18:00','0',6,'tablebody1','0','0'));
backer 等级:职业侠客
文章:316
积分:813
注册:2004-8-22
第 7 楼
请做好了的朋友把解答发上来看看
2005-3-17 22:24:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21202','4','esken','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','强烈要求给出答案!!1<img src=Skins/Default/emot/em05.gif border=0 align=middle onmousewheel="return bbimg(this)" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;">','2005-3-18 10:24:00','face1.gif','*.*.*.*','5155',1,0,13510,2,'新手上路','32','32','4','2005-3-17','1012','225','40','','1',0,'0','level0.gif',4,'2005-3-18 14:10:00','0',7,'tablebody2','0','0'));
esken 等级:新手上路
文章:4
积分:225
注册:2005-3-17
第 8 楼
强烈要求给出答案!!1 2005-3-18 10:24:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21288','4','backer','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>没人去做我给答案做什么?</P>','2005-3-18 21:04:00','face1.gif','*.*.*.*','5155',1,0,1980,2,'职业侠客','32','32','316','2004-8-22','1704','813','696','','1',0,'0','level4.gif',4,'2005-3-26 16:18:00','0',8,'tablebody1','0','0'));
backer 等级:职业侠客
文章:316
积分:813
注册:2004-8-22
第 9 楼
没人去做我给答案做什么?
2005-3-18 21:04:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21461','4','winglee','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>渴望答案。</P><P>请楼主不要推辞了嘛。大家都是抱着学习的态度来的。</P><P>本人不是没做,只是很菜,对于内存泄漏等问题了解太少了,而且这些题肯定有很多不是一眼能看出来的。</P><P>把我的贴出来就糗大了,呵呵。但真的想学到东西。</P>','2005-3-20 0:10:00','face1.gif','*.*.*.*','5155',1,0,13741,2,'新手上路','32','32','1','2005-3-19','1003','211','33','','1',0,'0','level0.gif',4,'2005-3-25 13:14:00','0',9,'tablebody2','0','0'));
winglee 等级:新手上路
文章:1
积分:211
注册:2005-3-19
第 10 楼
渴望答案。
请楼主不要推辞了嘛。大家都是抱着学习的态度来的。
本人不是没做,只是很菜,对于内存泄漏等问题了解太少了,而且这些题肯定有很多不是一眼能看出来的。
把我的贴出来就糗大了,呵呵。但真的想学到东西。
2005-3-20 0:10:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21718','4','liupeili','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','我也希望楼主给出答案!','2005-3-21 22:51:00','face1.gif','*.*.*.*','5155',1,0,4445,2,'论坛游侠','32','32','147','2004-10-11','1384','892','372','','1',0,'0','level2.gif',4,'2005-3-24 13:44:00','0',10,'tablebody1','0','0'));
liupeili 等级:论坛游侠
文章:147
积分:892
注册:2004-10-11
第 11 楼
我也希望楼主给出答案! 2005-3-21 22:51:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21846','4','刘安生','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>试题答案大家可以去CSDN看看,上面有</P>','2005-3-22 21:05:00','face1.gif','*.*.*.*','5155',1,0,13007,2,'版主','32','32','73','2005-3-11','1175','430','195','1981-11-17','1',0,'0','level10.gif',3,'2005-3-26 20:03:00','0',11,'tablebody2','0','0'));
刘安生 等级:版主
文章:73
积分:430
注册:2005-3-11
第 12 楼
试题答案大家可以去CSDN看看,上面有
2005-3-22 21:05:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21861','4','刘安生','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>试题答案大家可以去CSDN看看,上面有</P>','2005-3-22 21:47:00','face1.gif','*.*.*.*','5155',1,0,13007,2,'版主','32','32','73','2005-3-11','1175','430','195','1981-11-17','1',0,'0','level10.gif',3,'2005-3-26 20:03:00','0',12,'tablebody1','0','0'));
刘安生 等级:版主
文章:73
积分:430
注册:2005-3-11
第 13 楼
试题答案大家可以去CSDN看看,上面有
2005-3-22 21:47:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('21927','4','broose','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<P>我不怕丑,先帖我的回答:</P><P>一、</P><P>布尔:if(flag)/if(!flag)&nbsp;&nbsp; 浮点 :if(0.0f == x) / if(0.0f != x)&nbsp;&nbsp;char*:if(NULL == p)/if(NULL != p)</P><P>二、</P><P>sizeof(str) = 6</P><P>sizeof(p) = 4</P><P>sizeof(n) = 4</P><P>sizeof(str) = 4 //指针参数</P><P>sizeof(p) = 4 //malloc</P><P>三、</P><P>1、避免头文件重复包含</P><P>2、&lt;&gt;表示先从系统安装目录查找,""表示先从当前目录查找,找不到再到系统安装目录查找</P><P>3、(1)、const&nbsp;&nbsp;char * p表示p指针指向的内存地址内容,不能通过p的引用来修改,但可以通过其他方式修改</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(2)、char* const p表示p指针本身的地址内容不能被修改,但可以修改p指针指向的内存内容</P><P>4、C编译器不会对程序员定义的函数名进行专门编码,而C++则会,孙老师在讲DLL时说过“名字改编”的问题,其中一点原因是C++支持函数重载,编译后的函数名不一定就是程序员所定义的函数名。当C++企图连接一个由C编译器编译好的函数时,它将无法识别函数名。故要加extern "C"</P><P>5、第一个:执行N次循环+N次判断,如果判断条件很简单则选用它。</P><P>第二个:执行N次循环+1次判断,如果判断条件很复杂则选用它。</P><P>四、</P><P>1、GetMemory用p复制字符串指针并申请堆内存(此时str并未申请到内存),函数返回后p被销毁但内存仍然未被释放,该内存属于被泄露的匿名内存。结果:内存报错。</P><P>2、GetMemory函数内部申请了栈内存保存了字符串"Hello world.",返回后字符串资源被回收,str指向了无效内存。结果:应该是乱码。</P><P>3、是调用函数申请内存正确的方法,用指针的指针申请内存保证了调用者能得到内存资源,结果:"hello"正常显示,但显示后未free掉堆内存,Test函数返回后str指针被销毁,造成泄露。</P><P>4、头3行代码等于什么也没干,相当于仅仅声明了char *str;&nbsp;&nbsp;后面的代码孙老师在“指向常量的指针”课程中有讲过。if语句内部相当于 str = "world"; 将常量字符串赋给了str。结果:显示“world”。(C++的书中没提到字符串池的概念,我这里把"world"理解为JAVA中的字符串池,因为给任何一个字符串指针赋值为"world",其指针地址是一样的)。</P><P>五、</P><P>1、</P><P>char k = strSrc[0];<br>while(\'0\' != k)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp;strDest[k] = strSrc[k];<br>&nbsp;&nbsp;&nbsp;&nbsp;k++;<br>}</P><P>2、不知道</P><P>六、</P><P>1、构造函数:<br>String::String(const char* str = NULL)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; if(NULL != str)<br>&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_data = new char[strlen(str)+1];<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strcpy(m_data, str);<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m_data = new char[6];<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strcpy(m_data, "Hello");<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_data[5] = \'\\0\';<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br>}<br>2、拷贝构造函数:<br>String::String(const String&amp; other)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; int len = strlen(other.m_data);<br>&nbsp;&nbsp;&nbsp;&nbsp; this-&gt;m_data = new char[len+1];<br>&nbsp;&nbsp;&nbsp;&nbsp; strcpy(m_data, other.m_data);<br>}<br>3、析构函数:<br>String::~String()<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; delete []m_data;<br>}<br>4、重载运算符<br>String&amp; String::operator = (const String&amp; other)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; delete []m_data;<br>&nbsp;&nbsp;&nbsp;&nbsp; int len = strlen(other.m_data);<br>&nbsp;&nbsp;&nbsp;&nbsp; this-&gt;m_data = new char[len+1];<br>&nbsp;&nbsp;&nbsp;&nbsp; strcpy(m_data, other.m_data);<br>&nbsp;&nbsp;&nbsp;&nbsp; return *this;<br>}</P><br><div align=right><font color=#000066>[此贴子已经被作者于2005-3-23 14:05:07编辑过]</font></div>','2005-3-23 14:00:00','face1.gif','*.*.*.*','5155',1,0,4086,2,'论坛游民','32','32','33','2004-10-6','1153','840','153','','1',0,'0','level1.gif',4,'2005-3-26 16:31:00','0',13,'tablebody2','0','0'));
broose 等级:论坛游民
文章:33
积分:840
注册:2004-10-6
第 14 楼
我不怕丑,先帖我的回答:
一、
布尔:if(flag)/if(!flag) 浮点 :if(0.0f == x) / if(0.0f != x) char*:if(NULL == p)/if(NULL != p)
二、
sizeof(str) = 6
sizeof(p) = 4
sizeof(n) = 4
sizeof(str) = 4 //指针参数
sizeof(p) = 4 //malloc
三、
1、避免头文件重复包含
2、<>表示先从系统安装目录查找,""表示先从当前目录查找,找不到再到系统安装目录查找
3、(1)、const char * p表示p指针指向的内存地址内容,不能通过p的引用来修改,但可以通过其他方式修改
(2)、char* const p表示p指针本身的地址内容不能被修改,但可以修改p指针指向的内存内容
4、C编译器不会对程序员定义的函数名进行专门编码,而C++则会,孙老师在讲DLL时说过“名字改编”的问题,其中一点原因是C++支持函数重载,编译后的函数名不一定就是程序员所定义的函数名。当C++企图连接一个由C编译器编译好的函数时,它将无法识别函数名。故要加extern "C"
5、第一个:执行N次循环+N次判断,如果判断条件很简单则选用它。
第二个:执行N次循环+1次判断,如果判断条件很复杂则选用它。
四、
1、GetMemory用p复制字符串指针并申请堆内存(此时str并未申请到内存),函数返回后p被销毁但内存仍然未被释放,该内存属于被泄露的匿名内存。结果:内存报错。
2、GetMemory函数内部申请了栈内存保存了字符串"Hello world.",返回后字符串资源被回收,str指向了无效内存。结果:应该是乱码。
3、是调用函数申请内存正确的方法,用指针的指针申请内存保证了调用者能得到内存资源,结果:"hello"正常显示,但显示后未free掉堆内存,Test函数返回后str指针被销毁,造成泄露。
4、头3行代码等于什么也没干,相当于仅仅声明了char *str; 后面的代码孙老师在“指向常量的指针”课程中有讲过。if语句内部相当于 str = "world"; 将常量字符串赋给了str。结果:显示“world”。(C++的书中没提到字符串池的概念,我这里把"world"理解为JAVA中的字符串池,因为给任何一个字符串指针赋值为"world",其指针地址是一样的)。
五、
1、
char k = strSrc[0];
while('0' != k)
{
strDest[k] = strSrc[k];
k++;
}
2、不知道
六、
1、构造函数:
String::String(const char* str = NULL)
{
if(NULL != str)
{
m_data = new char[strlen(str)+1];
strcpy(m_data, str);
}
else
{
m_data = new char[6];
strcpy(m_data, "Hello");
m_data[5] = '\0';
}
}
2、拷贝构造函数:
String::String(const String& other)
{
int len = strlen(other.m_data);
this->m_data = new char[len+1];
strcpy(m_data, other.m_data);
}
3、析构函数:
String::~String()
{
delete []m_data;
}
4、重载运算符
String& String::operator = (const String& other)
{
delete []m_data;
int len = strlen(other.m_data);
this->m_data = new char[len+1];
strcpy(m_data, other.m_data);
return *this;
}
[此贴子已经被作者于2005-3-23 14:05:07编辑过] 2005-3-23 14:00:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('22141','4','ccaacc','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','林锐 书里的&nbsp;&nbsp;楼主引用 麻烦说一下 ok','2005-3-25 4:38:00','face1.gif','*.*.*.*','5155',1,0,11190,2,'论坛游民','32','32','28','2005-2-6','1061','259','89','','1',0,'0','level1.gif',4,'2005-3-25 12:21:00','0',14,'tablebody1','0','0'));
ccaacc 等级:论坛游民
文章:28
积分:259
注册:2005-2-6
第 15 楼
林锐 书里的 楼主引用 麻烦说一下 ok 2005-3-25 4:38:00
var actioninfo3='单帖屏蔽';document.write (dvbbs_show_topic('22300','4','backer','','','
[email protected]','||||||||||||||||||','','Images/userface/image1.gif','','','','','<DIV class=Section1 style="LAYOUT-GRID:&nbsp;&nbsp;17.5pt 0.7pt; mso-layout-grid-char-alt: 2824"><br><br><br><H1>C++/C试题的答案与评分标准</H1><P>一、请填写BOOL , float, 指针变量 与“零值”比较的 if 语句。(10分)</P><p><TABLE cellSpacing=0 cellPadding=0 border=1><TR><TD vAlign=top width=581 colSpan=2><P>请写出 BOOL&nbsp;&nbsp;flag 与“零值”比较的 if 语句。(3分)</P></TD></TR><TR><TD vAlign=top width=291><P><B>标准答案:</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;if ( flag )</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;if ( !flag )</B></P></TD><TD vAlign=top width=291><P>如下写法均属不良风格,不得分。</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (flag == TRUE)&nbsp;&nbsp; </P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (flag == 1 )&nbsp;&nbsp;&nbsp;&nbsp; </P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (flag == FALSE)&nbsp;&nbsp;</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (flag == 0)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</P></TD></TR><TR><TD vAlign=top width=581 colSpan=2><P>请写出 float&nbsp;&nbsp;x 与“零值”比较的 if 语句。(4分)</P></TD></TR><TR><TD vAlign=top width=291><P><B>标准答案示例:</B></P><P><B>const float EPSINON = 0.00001;</B></P><P><B>if ((x &gt;= - EPSINON) &amp;&amp; (x &lt;= EPSINON)</B></P><P>不可将浮点变量用“==”或“!=”与数字比较,应该设法转化成“&gt;=”或“&lt;=”此类形式。</P><P>&nbsp;&nbsp; </P></TD><TD vAlign=top width=291><p><P>如下是错误的写法,不得分。</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (x == 0.0)&nbsp;&nbsp; </P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (x != 0.0)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P><P>&nbsp;&nbsp;&nbsp;&nbsp;</P></TD></TR><TR><TD vAlign=top width=581 colSpan=2><P>请写出 char&nbsp;&nbsp;*p 与“零值”比较的 if 语句。(3分)</P></TD></TR><TR><TD vAlign=top width=291><P><B>标准答案:</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;if (p == NULL)</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;if (p != NULL)</B></P></TD><TD vAlign=top width=291><P>如下写法均属不良风格,不得分。</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (p == 0) </P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (p != 0)&nbsp;&nbsp;&nbsp;&nbsp; </P><P>&nbsp;&nbsp;&nbsp;&nbsp;if (p)&nbsp;&nbsp;</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</P></TD></TR></TABLE><p><P><B>二、以下为Windows NT下的32位C++程序,请计算sizeof的值(10分)</B></P><p><TABLE cellSpacing=0 cellPadding=0 border=1><TR><TD vAlign=top width=284 rowSpan=2><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char&nbsp;&nbsp;str[] = “Hello” ;</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char&nbsp;&nbsp; *p = str ;</P><P>int&nbsp;&nbsp;&nbsp;&nbsp; n = 10;</P><P>请计算</P><P><B>sizeof (str ) =&nbsp;&nbsp;6&nbsp;&nbsp; (2分) </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </B></P><P><B>sizeof ( p ) =&nbsp;&nbsp; 4&nbsp;&nbsp; (2分)</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>sizeof ( n ) =&nbsp;&nbsp; 4&nbsp;&nbsp; (2分)</B></P></TD><TD vAlign=top width=284><P>void Func ( char str[100])</P><P>{</P><P>请计算</P><P><B>sizeof( str ) =&nbsp;&nbsp; 4&nbsp;&nbsp;&nbsp;&nbsp; </B><B>(2分)</B></P><P>}</P><p></TD></TR><TR><TD vAlign=top width=284><P>void *p = malloc( 100 );</P><P>请计算</P><P><B>sizeof ( p ) =&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(2分)</B></P><p></TD></TR></TABLE><p><P><B>三、简答题(25分)</B></P><p><P>1、头文件中的 ifndef/define/endif 干什么用?(5分)</P><P><B>答:防止该头文件被重复引用。</B></P><p><P>2、#include&nbsp;&nbsp;&lt;filename.h&gt;&nbsp;&nbsp; 和&nbsp;&nbsp;#include&nbsp;&nbsp;“filename.h” 有什么区别?(5分)</P><P><B>答:对于#include&nbsp;&nbsp;&lt;filename.h&gt; ,编译器从标准库路径开始搜索 filename.h</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;对于#include&nbsp;&nbsp;“filename.h” ,编译器从用户的工作路径开始搜索 filename.h</B></P><p><P>3、const 有什么用途?(请至少说明两种)(5分)</P><P><B>答:(1)可以定义 const 常量</B></P><P><B>(2)const可以修饰函数的参数、返回值,甚至函数的定义体。被const修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性。</B></P><p><P>4、在C++ 程序中调用被 C编译器编译后的函数,为什么要加 extern “C”? (5分)</P><P><B>答:C++语言支持函数重载,C语言不支持函数重载。函数被C++编译后在库中的名字与C语言的不同。假设某个函数的原型为: void foo(int x, int y);</B></P><P><B>该函数被C编译器编译后在库中的名字为_foo,而C++编译器则会产生像_foo_int_int之类的名字。</B></P><P><B>C++提供了C连接交换指定符号extern“C”来解决名字匹配问题。</B></P><p><P><B>5、请简述以下两个for循环的优缺点(5分)</B></P><p><TABLE cellSpacing=0 cellPadding=0 border=1><TR><TD vAlign=top width=268><P>for (i=0; i&lt;N; i++)</P><P>{</P><P>if (condition)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;DoSomething();</P><P>else</P><P>&nbsp;&nbsp;&nbsp;&nbsp;DoOtherthing();</P><P>}</P></TD><TD vAlign=top width=283><P>if (condition)</P><P>{</P><P>for (i=0; i&lt;N; i++)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;DoSomething();</P><P>}</P><P>else</P><P>{</P><P>&nbsp;&nbsp;&nbsp;&nbsp;for (i=0; i&lt;N; i++)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;DoOtherthing();</P><P>}</P></TD></TR><TR><TD vAlign=top width=268><P><B>优点:程序简洁</B></P><P><B></B></P><P><B>缺点:多执行了N-1次逻辑判断,并且打断了循环“流水线”作业,使得编译器不能对循环进行优化处理,降低了效率。</B></P></TD><TD vAlign=top width=283><P><B>优点:循环的效率高</B></P><P><B></B></P><P><B>缺点:程序不简洁</B></P><P><B></B></P><P><B></B></P></TD></TR></TABLE><p><P><B>四、有关内存的思考题(每小题5分,共20分)</B></P><P><B></B></P><TABLE cellSpacing=0 cellPadding=0 border=1><TR><TD vAlign=top width=291><P>void GetMemory(char *p)</P><P>{</P><P>p = (char *)malloc(100);</P><P>}</P><P>void Test(void) </P><P>{</P><P>char *str = NULL;</P><P>GetMemory(str);&nbsp;&nbsp; </P><P>strcpy(str, "hello world");</P><P>printf(str);</P><P>}</P><p><P>请问运行Test函数会有什么样的结果?</P><P><B>答:程序崩溃。</B></P><P><B>因为GetMemory并不能传递动态内存,</B></P><P><B>Test函数中的 str一直都是 NULL。</B></P><P><B>strcpy(str, "hello world");将使程序崩溃。</B></P><p></TD><TD vAlign=top width=291><P>char *GetMemory(void)</P><P>{&nbsp;&nbsp; </P><P>char p[] = "hello world";</P><P>return p;</P><P>}</P><P>void Test(void)</P><P>{</P><P>char *str = NULL;</P><P>str = GetMemory();&nbsp;&nbsp;&nbsp;&nbsp;</P><P>printf(str);</P><P>}</P><p><P>请问运行Test函数会有什么样的结果?</P><P><B>答:可能是乱码。</B></P><P><B>因为GetMemory返回的是指向“栈内存”的指针,该指针的地址不是 NULL,但其原现的内容已经被清除,新内容不可知。</B></P></TD></TR><TR><TD vAlign=top width=291><P>void GetMemory2(char **p, int num)</P><P>{</P><P>*p = (char *)malloc(num);</P><P>}</P><P>void Test(void)</P><P>{</P><P>char *str = NULL;</P><P>GetMemory(&amp;str, 100);</P><P>strcpy(str, "hello");&nbsp;&nbsp; </P><P>printf(str);&nbsp;&nbsp;&nbsp;&nbsp;</P><P>}</P><P>请问运行Test函数会有什么样的结果?</P><P><B>答:</B></P><P><B>(1)能够输出hello</B></P><P><B>(2)内存泄漏</B></P><p><p></TD><TD vAlign=top width=291><P>void Test(void)</P><P>{</P><P>char *str = (char *) malloc(100);</P><P>&nbsp;&nbsp;&nbsp;&nbsp;strcpy(str, “hello”);</P><P>&nbsp;&nbsp;&nbsp;&nbsp;free(str);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</P><P>&nbsp;&nbsp;&nbsp;&nbsp;if(str != NULL)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;{</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strcpy(str, “world”); </P><P>printf(str);</P><P>}</P><P>}</P><P>请问运行Test函数会有什么样的结果?</P><P><B>答:篡改动态内存区的内容,后果难以预料,非常危险。</B></P><P><B>因为free(str);之后,str成为野指针,</B></P><P><B>if(str != NULL)语句不起作用。</B></P><p><p></TD></TR></TABLE><p><P><B>五、编写strcpy函数(10分)</B></P><P>已知strcpy函数的原型是</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char *strcpy(char *strDest, const char *strSrc);</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 其中strDest是目的字符串,strSrc是源字符串。</P><P>(1)不调用C++/C的字符串库函数,请编写函数 strcpy</P><P align=left><B>char *strcpy(char *strDest, const char *strSrc);</B></P><P align=left><B>{</B></P><P align=left><B>&nbsp;&nbsp;&nbsp;&nbsp;assert((strDest!=NULL) &amp;&amp; (strSrc !=NULL)); // 2分</B></P><P align=left><B>&nbsp;&nbsp;&nbsp;&nbsp;char *address = strDest;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 2分</B></P><P align=left><B>&nbsp;&nbsp;&nbsp;&nbsp;while( (*strDest++ = * strSrc++) != ‘\\0’ )&nbsp;&nbsp;&nbsp;&nbsp;// 2分</B></P><P align=left><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL ; </B></P><P align=left><B>&nbsp;&nbsp;&nbsp;&nbsp;return address ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 2分</B></P><P align=left><B>}</B></P><p><P>(2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值?</P><P><B>答:为了实现链式表达式。&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 2分</B></P><P><B>例如&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int length = strlen( strcpy( strDest, “hello world”) );</B></P><p><P><B>六、编写类String的构造函数、析构函数和赋值函数(25分)</B></P><P>已知类String的原型为:</P><P>&nbsp;&nbsp;&nbsp;&nbsp;class String</P><P>&nbsp;&nbsp;&nbsp;&nbsp;{</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;public:</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String(const char *str = NULL); // 普通构造函数</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String(const String &amp;other);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 拷贝构造函数</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;~ String(void);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 析构函数</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String &amp; operate =(const String &amp;other);&nbsp;&nbsp;&nbsp;&nbsp;// 赋值函数</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private:</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;char&nbsp;&nbsp;&nbsp;&nbsp;*m_data;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 用于保存字符串</P><P>&nbsp;&nbsp;&nbsp;&nbsp;};</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 请编写String的上述4个函数。</P><P><B>标准答案:</B></P><p><P>// String的析构函数</P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String::~String(void)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 3分</B></P><P><B>{</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;delete [] m_data;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>// 由于m_data是内部数据类型,也可以写成 delete m_data;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</B></P><p><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // String的普通构造函数&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String::String(const char *str)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 6分</B></P><P><B>{</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;if(str==NULL)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;{</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_data = new char[1];&nbsp;&nbsp;&nbsp;&nbsp;// 若能加 NULL 判断则更好</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *m_data = ‘\\0’;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;else</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;{</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int length = strlen(str);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_data = new char[length+1];&nbsp;&nbsp;// 若能加 NULL 判断则更好&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strcpy(m_data, str);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;}</B></P><P><B>}&nbsp;&nbsp; </B></P><P>// 拷贝构造函数</P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;String::String(const String &amp;other)&nbsp;&nbsp; // 3分</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;int length = strlen(other.m_data); </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;m_data = new char[length+1];&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 若能加 NULL 判断则更好&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;strcpy(m_data, other.m_data);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </B></P><P><B>}</B></P><P>// 赋值函数</P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;String &amp; String::operate =(const String &amp;other)&nbsp;&nbsp;&nbsp;&nbsp;// 13分</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // (1) 检查自赋值&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 4分</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(this == &amp;other)</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return *this;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;</B></P><P><B>// (2) 释放原有的内存资源&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 3分</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delete [] m_data;</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // (3)分配新的内存资源,并复制内容 // 3分</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;int length = strlen(other.m_data); </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;m_data = new char[length+1];&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 若能加 NULL 判断则更好</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strcpy(m_data, other.m_data);</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // (4)返回本对象的引用&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// 3分</B></P><P><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return *this;</B></P><P><B>}&nbsp;&nbsp; </B></P></DIV><br><img SRC="skins/default/filetype/rar.gif" border=0 onmousewheel="return bbimg(this)" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;"> <a href="viewFile.asp?Boardid=4&ID=441" target=_blank>点击浏览该文件</a><br><br><div align=right><font color=#000066>[此贴子已经被作者于2005-3-26 16:25:57编辑过]</font></div>','2005-3-26 16:23:00','face1.gif','*.*.*.*','5155',1,0,1980,2,'职业侠客','32','32','316','2004-8-22','1704','813','696','','1',0,'0','level4.gif',4,'2005-3-26 16:18:00','0',15,'tablebody2','0','0'));
backer 等级:职业侠客
文章:316
积分:813
注册:2004-8-22
第 16 楼
C++/C试题的答案与评分标准
一、请填写BOOL , float, 指针变量 与“零值”比较的 if 语句。(10分)
请写出 BOOL flag 与“零值”比较的 if 语句。(3分)
标准答案:
if ( flag )
if ( !flag )
如下写法均属不良风格,不得分。
if (flag == TRUE)
if (flag == 1 )
if (flag == FALSE)
if (flag == 0)
请写出 float x 与“零值”比较的 if 语句。(4分)
标准答案示例:
const float EPSINON = 0.00001;
if ((x >= - EPSINON) && (x <= EPSINON)
不可将浮点变量用“==”或“!=”与数字比较,应该设法转化成“>=”或“<=”此类形式。
如下是错误的写法,不得分。
if (x == 0.0)
if (x != 0.0)
请写出 char *p 与“零值”比较的 if 语句。(3分)
标准答案:
if (p == NULL)
if (p != NULL)
如下写法均属不良风格,不得分。
if (p == 0)
if (p != 0)
if (p)
if (!)
二、以下为Windows NT下的32位C++程序,请计算sizeof的值(10分)
char str[] = “Hello” ;
char *p = str ;
int n = 10;
请计算
sizeof (str ) = 6 (2分)
sizeof ( p ) = 4 (2分)
sizeof ( n ) = 4 (2分)
void Func ( char str[100])
{
请计算
sizeof( str ) = 4 (2分)
}
void *p = malloc( 100 );
请计算
sizeof ( p ) = 4 (2分)
三、简答题(25分)
1、头文件中的 ifndef/define/endif 干什么用?(5分)
答:防止该头文件被重复引用。
2、#include <filename.h> 和 #include “filename.h” 有什么区别?(5分)
答:对于#include <filename.h> ,编译器从标准库路径开始搜索 filename.h
对于#include “filename.h” ,编译器从用户的工作路径开始搜索 filename.h
3、const 有什么用途?(请至少说明两种)(5分)
答:(1)可以定义 const 常量
(2)const可以修饰函数的参数、返回值,甚至函数的定义体。被const修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性。
4、在C++ 程序中调用被 C编译器编译后的函数,为什么要加 extern “C”? (5分)
答:C++语言支持函数重载,C语言不支持函数重载。函数被C++编译后在库中的名字与C语言的不同。假设某个函数的原型为: void foo(int x, int y);
该函数被C编译器编译后在库中的名字为_foo,而C++编译器则会产生像_foo_int_int之类的名字。
C++提供了C连接交换指定符号extern“C”来解决名字匹配问题。
5、请简述以下两个for循环的优缺点(5分)
for (i=0; i<N; i++)
{
if (condition)
DoSomething();
else
DoOtherthing();
}
if (condition)
{
for (i=0; i<N; i++)
DoSomething();
}
else
{
for (i=0; i<N; i++)
DoOtherthing();
}
优点:程序简洁
缺点:多执行了N-1次逻辑判断,并且打断了循环“流水线”作业,使得编译器不能对循环进行优化处理,降低了效率。
优点:循环的效率高
缺点:程序不简洁
四、有关内存的思考题(每小题5分,共20分)
void GetMemory(char *p)
{
p = (char *)malloc(100);
}
void Test(void)
{
char *str = NULL;
GetMemory(str);
strcpy(str, "hello world");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:程序崩溃。
因为GetMemory并不能传递动态内存,
Test函数中的 str一直都是 NULL。
strcpy(str, "hello world");将使程序崩溃。
char *GetMemory(void)
{
char p[] = "hello world";
return p;
}
void Test(void)
{
char *str = NULL;
str = GetMemory();
printf(str);
}
请问运行Test函数会有什么样的结果?
答:可能是乱码。
因为GetMemory返回的是指向“栈内存”的指针,该指针的地址不是 NULL,但其原现的内容已经被清除,新内容不可知。
void GetMemory2(char **p, int num)
{
*p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf(str);
}
请问运行Test函数会有什么样的结果?
答:
(1)能够输出hello
(2)内存泄漏
void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, “hello”);
free(str);
if(str != NULL)
{
strcpy(str, “world”);
printf(str);
}
}
请问运行Test函数会有什么样的结果?
答:篡改动态内存区的内容,后果难以预料,非常危险。
因为free(str);之后,str成为野指针,
if(str != NULL)语句不起作用。
五、编写strcpy函数(10分)
已知strcpy函数的原型是
char *strcpy(char *strDest, const char *strSrc);
其中strDest是目的字符串,strSrc是源字符串。
(1)不调用C++/C的字符串库函数,请编写函数 strcpy
char *strcpy(char *strDest, const char *strSrc);
{
assert((strDest!=NULL) && (strSrc !=NULL)); // 2分
char *address = strDest; // 2分
while( (*strDest++ = * strSrc++) != ‘\0’ ) // 2分
NULL ;
return address ; // 2分
}
(2)strcpy能把strSrc的内容复制到strDest,为什么还要char * 类型的返回值?
答:为了实现链式表达式。 // 2分
例如 int length = strlen( strcpy( strDest, “hello world”) );
六、编写类String的构造函数、析构函数和赋值函数(25分)
已知类String的原型为:
class String
{
public:
String(const char *str = NULL); // 普通构造函数
String(const String &other); // 拷贝构造函数
~ String(void); // 析构函数
String & operate =(const String &other); // 赋值函数
private:
char *m_data; // 用于保存字符串
};
请编写String的上述4个函数。
标准答案:
// String的析构函数
String::~String(void) // 3分
{
delete [] m_data;
// 由于m_data是内部数据类型,也可以写成 delete m_data;
}
// String的普通构造函数
String::String(const char *str) // 6分
{
if(str==NULL)
{
m_data = new char[1]; // 若能加 NULL 判断则更好
*m_data = ‘\0’;
}
else
{
int length = strlen(str);
m_data = new char[length+1]; // 若能加 NULL 判断则更好
strcpy(m_data, str);
}
}
// 拷贝构造函数
String::String(const String &other) // 3分
{
int length = strlen(other.m_data);
m_data = new char[length+1]; // 若能加 NULL 判断则更好
strcpy(m_data, other.m_data);
}
// 赋值函数
String & String::operate =(const String &other) // 13分
{
// (1) 检查自赋值 // 4分
if(this == &other)
return *this;
// (2) 释放原有的内存资源 // 3分
delete [] m_data;
// (3)分配新的内存资源,并复制内容 // 3分
int length = strlen(other.m_data);
m_data = new char[length+1]; // 若能加 NULL 判断则更好
strcpy(m_data, other.m_data);
// (4)返回本对象的引用 // 3分
return *this;
}
本文地址:http://com.8s8s.com/it/it22608.htm