欢迎来到天天文库
浏览记录
ID:11528565
大小:943.00 KB
页数:221页
时间:2018-07-12
《c primerth详细答案打印版》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、练习2.16语言不应该支持所谓的Type-constraint(类型约束)语法.有三个理由:?它会使templates更复杂.?无论如何用户总是能够检验Type是否提供了“得以顺利将此template实例化”的必要函数;如果他们遗漏了,编译器会对此实例化行为发出错误讯息,指出某个函数有所谓的隐式约束(implicitconstraint),而不只是发出错误信息说这个template的实例化是错误的.?请看L&L练习2.16出现的脚注,其中所描述的习惯.练习2.17这是正确的语意.另一种做法是在classtemplate被产生出来时即检验此一templ
2、ate的所有可能用法.这会造成编译时间的严重浪费.不过此种语意的缺点是,以某个类型将template实例化,在程序A中也许可以有效运作,在程序B中也许不能成功,视被调用的函数而定.练习2.18以下事情有可能在这个函数中出现错误:?file_name可能是个空字符串(emptystring).?ifstreamconstructor可能无法打开文件,即使file_name是一个有效字符串.?文件起始处可能并不内含一个int数值.?elem_cnt可能收到一个不正确的值:太大、或0、或负值.?allocate_array()为elem_cnt个元素分配空
3、间,可能失败.?while循环读到太多元素;这个循环会在遇到EOF(或读取int失败)时结束,但它并未考虑pi所指数组的大小.?sort_array()会对pi所指向的数组排序,该数组假想有elem_cnt个元素.但是while循环可能在读入elem_cnt个元素之前就结束,因为输入端的ints个数不足,并因而造成数组的剩余部分没有初值.?sort_array()可能会收到一个无效指针pi,因为此处并未检查allocate_array()的返回值;这个错误可能会造成程序在循环内当掉.练习2.19int*alloc_and_init(stringfil
4、e_name){ifstreaminfile(file_name.c_str());intelem_cnt;infile>>elem_cnt;try{int*pi=allocate_array(elem_cnt);intelem;intindex=0;while(cin>>elem)pi[index++]=elem;sort_array(pi,elem_cnt);register_data(pi);returnpi;}catch(constnoMem&n){cout<<"allocate_array()error"<5、nti){cout<<"sort_array()error"<>elem_cnt;if(!infile6、7、elem_cnt<=0)throw"inva8、lidelem_cnt";int*pi=allocate_array(elem_cnt);intelem;intindex=0;while(cin>>elem){if(index>=elem_cnt)throw"toomanyinputelements";pi[index++]=elem;}sort_array(pi,index);register_data(pi);returnpi;}catch(constnoMem&n){cout<<"allocate_array()error"<9、eption以便通知用户}catch(inti){cout<<"sort_array()error"<10、liasmechanism).d.利用usingdirective.a.利用前置修饰词表示法来访问Exerc
5、nti){cout<<"sort_array()error"<>elem_cnt;if(!infile
6、
7、elem_cnt<=0)throw"inva
8、lidelem_cnt";int*pi=allocate_array(elem_cnt);intelem;intindex=0;while(cin>>elem){if(index>=elem_cnt)throw"toomanyinputelements";pi[index++]=elem;}sort_array(pi,index);register_data(pi);returnpi;}catch(constnoMem&n){cout<<"allocate_array()error"<9、eption以便通知用户}catch(inti){cout<<"sort_array()error"<10、liasmechanism).d.利用usingdirective.a.利用前置修饰词表示法来访问Exerc
9、eption以便通知用户}catch(inti){cout<<"sort_array()error"<
10、liasmechanism).d.利用usingdirective.a.利用前置修饰词表示法来访问Exerc
此文档下载收益归作者所有