- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CPrimer第16章-模板与泛型编程-部分选做习题答案
16章 部分选做习题
16.1编写一个模板返回形参的绝对值,至少用三种不同类型的值调用模板。注意:在16.3节讨论编译器怎样处理模板实例化之前,你应该将每个模板定义和该模板的所有使用放在同一文件中。
// 16.1_template.cpp : 定义控制台应用程序的入口点。
//
#include stdafx.h
#include iostream
template typename T inline T abs( T tVal)
{
return tVal 0 ? tVal : -1*tVal;
}
int _tmain(int argc, _TCHAR* argv[])
{
std::cout \n\tabs( false ) is:\t abs(false) std::endl
\n\tabs( -3 ) is:\t\t abs( -3 ) std::endl
\n\tabs( -8.6 ) is:\t\t abs( -8.6 ) std::endl;
system(pause);
return 0;
}
16.2 编写一个函数模板,接受一个ostream引用和一个值,将该值写入流。用至少四种不同类型调用函数。通过写至cout、写至文件和写至stringstream来测试你的程序。
// 16.2_template.cpp : 定义控制台应用程序的入口点。
//
#include stdafx.h
#include iostream
#include ostream
#include fstream
#include sstream
#include cassert
using namespace std;
template typename T inline
void testOstream( ostream os, T tVal )
{
os tVal;
}
int _tmain(int argc, _TCHAR* argv[])
{
// cout
cout Test of testOstream( cout, 6 ):\t;
testOstream( cout, 6 );
cout \n Test of testOstream( cout, true ):\t;
testOstream( cout, true );
cout \n Test of testOstream( cout, 8.6 ):\t;
testOstream( cout, 8.6 );
cout \n Test of testOstream( cout, \Good!\ ):\t;
testOstream( cout, Good! );
cout endl;
// ofstream
ofstream outfile;
outfile.open(testOf_Ofstream.txt);
assert( outfile );
if ( !outfile )
{
return NULL;
}
cout \n\tTest of ofstream, Please check the file just create.\n;
testOstream(outfile, \n Test of testOstream( outfile, 6 ):\t);
testOstream( outfile, 6 );
testOstream(outfile, \n Test of testOstream( outfile, true ):\t);
testOstream( outfile, true );
testOstream(outfile, \n Test of testOstream( outfile, 8.6 ):\t);
testOstream( outfile, 8.6 );
testOstream(outfile, \n Test of testOstream( outfile, \Good!\ ):\t);
testOstream( outfile, Good! );
outfile.close();
cout endl;
// stringstream
stringstream oss;
cout \n Test of testOstream( oss, 6 )/( oss, true )/( oss, 8.6 )/( oss, \Good!\): endl;
testOstream( oss, 6 );
testOstream( oss, \n );
testOstream( oss, t
您可能关注的文档
- 贯彻双代会精神工作规划措施.doc
- 18b20温度测量.doc
- 2009年陕西省初中毕业学业考试数学试题.doc
- 现代医院简报第11期(献血).doc
- 线性代数2008B答案.doc
- 心理咨询师国家考试.doc
- windowsserver2008服务器备份文件共享(权限问题).doc
- 小区住宅防水工程技术交底.doc
- 绿化单项养护工作标准及检查办法.doc
- 什么是商品期货.doc
- 2024年湖南省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年江西省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年安徽省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年福建省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年广东省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年河北省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年河南省高考英语试卷(含答案解析)+听力音频.docx
- 2024年湖北省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年湖南省高考英语试卷(含答案解析)+听力音频+听力原文.docx
- 2024年江苏省高考英语试卷(含答案解析)+听力音频+听力原文.docx
文档评论(0)