(20201219)C++中类模板的.hpp形式 Post author:xfxia Post published:2023年8月26日 Post category:其他 20201219 参考: 【1】 https://blog.csdn.net/u010608296/article/details/102483031 【2】 http://blog.chinaunix.net/uid-24118190-id-75239.html 【3】 https://www.jianshu.com/p/70ca94872418 【4】 http://c.biancheng.net/cpp/biancheng/view/2992.html test.h #pragma once #include <iostream> #include <stdlib.h> using namespace std; template<typename T> class c_show { public: void show(T data[]); }; test.hpp #include "test.h" template<typename T> void c_show<T>::show(T data[]) { cout << data[0] << endl; } main.cpp #include <iostream> #include "test.hpp" int main() { c_show<double> c_show; double data1[10] = { 0.0,1,2,3,4,5,6,7,8,9 }; c_show.show(); system("pause"); return 0; } 版权声明:本文为sinat_32602421原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 原文链接:https://blog.csdn.net/sinat_32602421/article/details/111403625 你可能也喜欢 Visual Studio 2017[无法打开源文件]的解决方法,亲测有效!!! C语言 计算个人所得税 Math.round(),Math.ceil(),Math.floor()的区别 ZooKeeper 中的 ZAB 协议 关于报表以及finereport报表软软件 git 恢复本地删除了的文件,合并操作 C++17新特性个人总结 【leetcode】230. 二叉搜索树中第K小的元素 数据库客户端连不上Oracel数据库 org.apache.poi.openxml4j.exceptions.OLE2NotOfficeXmlFileException:ppt文件读取失败 购物车,TextView右上角实现红色数字变化的实现 cs系统的服务器地址,中国cs水平最高服务器ip地址[转] SonarQube常用参数 sql语句优化的30种方法 promise-ajax请求 ORACLE GROUPING函数的使用 第三章 处理机调度与死锁(二) “先加密后签名”是不是安全?看完这篇就秒懂! 【一】Pinpoint1.8.4编译 SDL学习(六) Key Presses(键盘…