• 【C++】模板template


    C++ 模板

    模板是泛型编程的基础,泛型编程即以一种独立于任何特定类型的方式编写代码。

    模板是创建泛型类或函数的蓝图或公式。库容器,比如迭代器和算法,都是泛型编程的例子,它们都使用了模板的概念。

    每个容器都有一个单一的定义,比如 向量,我们可以定义许多不同类型的向量,比如 vector <int> 或 vector <string>

    您可以使用模板来定义函数和类,接下来让我们一起来看看如何使用。

    函数模板

    模板函数定义的一般形式如下所示:

    template <typename type> ret-type func-name(parameter list) { // 函数的主体 }

    在这里,type 是函数所使用的数据类型的占位符名称。这个名称可以在函数定义中使用。

    下面是函数模板的实例,返回两个数中的最大值:

    实例

    #include <iostream>
    #include <string>
     
    using namespace std;
     
    template <typename T>
    inline T const& Max (T const& a, T const& b) 
    { 
        return a < b ? b:a; 
    } 
    int main ()
    {
     
        int i = 39;
        int j = 20;
        cout << "Max(i, j): " << Max(i, j) << endl; 
     
        double f1 = 13.5; 
        double f2 = 20.7; 
        cout << "Max(f1, f2): " << Max(f1, f2) << endl; 
     
        string s1 = "Hello"; 
        string s2 = "World"; 
        cout << "Max(s1, s2): " << Max(s1, s2) << endl; 
     
       return 0;
    }

    当上面的代码被编译和执行时,它会产生下列结果:

    Max(i, j): 39
    Max(f1, f2): 20.7
    Max(s1, s2): World
  • 相关阅读:
    aop日志记录
    RocketMQ 启动停止命令
    windows搭建RocketMQ服务
    zTree实战
    springboot 传List参数
    Spring Boot之 Controller 接收参数和返回数据总结(包括上传、下载文件)
    SpringBoot Controller接收参数的几种常用方
    clob大数据转换为多行数据
    oracle dba学习
    TreeNode(包含读出文件里的信息)
  • 原文地址:https://www.cnblogs.com/ganxiang/p/13043152.html
Copyright © 2020-2023  润新知