模板和泛型编程(C++ Primer 答案)

16.1 

#include <iostream>

using namespace std;

template <typename T>
T myabs(T v) {
    return abs(v);
}

int main() {
    printf("%d\t", abs(-1));
    printf("%d\t", abs(-1l));
    printf("%d\t", abs(-'a'));

    return 0;
}

16.2

#include <iostream>
#include <fstream>
#include <sstream>

using namespace std;

template <typename T>
void mywrite(ostream& o, T v) {
    o << v << endl;
}

int main() {
    mywrite(cout, "abc");
    mywrite(cout, 123);
    mywrite(cout, 'c');
    mywrite(cout, 3.2e3);

    ofstream out("C:\\Users\\Administrator\\CLionProjects\\DS_A\\hehe.txt");
    mywrite(cout, "abc");
    mywrite(cout, 123);
    mywrite(cout, 'c');
    mywrite(cout, 3.2e3);
    out.close();

    stringstream ss;
    mywrite(ss, "abc");
    mywrite(ss, 123);
    mywrite(ss, 'c');
    mywrite(ss, 3.2e3);
    out.close();

    return 0;
}

16.3

#include <iostream>
#include <fstream>
#include <sstream>

using namespace std;

template <typename T1, typename T2>
int compare(T1 v, T2 w) {
    if(v < w)
        return -1;
    else if(v > w)
        return 1;
    else
        return 0;
}


int main() {
    printf("%p\t%p\n", "hi", "world");
    printf("%d\n", compare("hi", "world"));
    printf("%d\n", compare(string("hi"), string("world")));

    return 0;
}

可以看出,后者是比较字符串字面值,前者是比较两个指针大小。

基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计),个人经导师指导并认可通过的高分设计项目,评审分98分,项目中的源码都是经过本地编译过可运行的,都经过严格调试,确保可以运行!主要针对计算机相关专业的正在做大作业、毕业设计的学生需要项目实战练习的学习者,资源项目的难度比较适中,内容都是经过助教老师审定过的能够满足学习、使用需求,如果有需要的话可以放心下载使用。 基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoot微服务架构的养老机构管理系统源码(毕业设计)基于SpringBoo
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值