码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • C++大学教程(第七版)Chapter14.2函数模板-fig14_01


    函数模板,打印数组。

    用关键字typename 指出函数模板形参 ,实际上就是指任何内置类型。

    template 这样就是表示 T是个某个类型,是作为模板来使用的。

    1. // Fig14_01_printArray.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
    2. //
    3. #include <iostream>
    4. using namespace std;
    5. //function template printArray definition
    6. template <typename T>
    7. void printArray(const T* const array, int count)
    8. {
    9. for (int i = 0; i < count; i++)
    10. cout << array[i] << " ";
    11. cout << endl;
    12. }//end function template printArray
    13. int main()
    14. {
    15. const int aCount = 5;// size of array a
    16. const int bCount = 7;// size of array b
    17. const int cCount = 6;// size of array c
    18. int a[aCount] = {1,2,3,4,5};
    19. double b[bCount] = { 1.1,2.2,3.3,4.4,5.5,6.6,7.7 };
    20. char c[cCount] = { "Hello" };//6th position for null
    21. cout << "Array a contains:" << endl;
    22. //call integer function-template specialization
    23. printArray(a,aCount);
    24. // double function-template specialization
    25. cout << "Array b contains:" << endl;
    26. printArray(b,bCount);
    27. //char function-template specialization
    28. cout << "Array c contains:" << endl;
    29. printArray(c,cCount);
    30. }

    运行结果:

    1. Array a contains:
    2. 1 2 3 4 5
    3. Array b contains:
    4. 1.1 2.2 3.3 4.4 5.5 6.6 7.7
    5. Array c contains:
    6. H e l l o

  • 相关阅读:
    哪款蓝牙耳机音质最好?千元级别音质最好的蓝牙耳机
    Git 笔记
    Vue+Element switch组件的使用
    用JpaTransactionManager操作数据库事务
    pytest运行时参数说明,pytest详解,pytest.ini详解
    Windows操作系统 | CMD命令行查看当前用户名
    【日常】爬虫技巧进阶:textarea的value修改与提交问题(以智谱清言为例)
    【Houdini】流体渲染流程(进阶版)-- learn from ysy
    执行上下文,js、React、HTML中的this
    [云原生]微服务架构是什么
  • 原文地址:https://blog.csdn.net/superfreak/article/details/127990997
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号