1 Star 2 Fork 0

岑剑伟 / CPlusPlusThings

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
func_temp.cpp 495 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* 函数模板.cpp */
#include <cstring>
#include <iostream>
using namespace std;
template <class T> T compareMax(T t1, T t2) { return t1 > t2 ? t1 : t2; }
template <>
const char *compareMax<const char *>(const char *s1, const char *s2) {
cout << "[for debug]"
<< " call compareMax template" << endl;
return strcmp(s1, s2) >= 0 ? s1 : s2;
}
int main(int argc, char const *argv[]) {
cout << compareMax(1, 2) << endl;
cout << compareMax("asda", "qweq") << endl;
return 0;
}
C++
1
https://gitee.com/genvex/CPlusPlusThings.git
git@gitee.com:genvex/CPlusPlusThings.git
genvex
CPlusPlusThings
CPlusPlusThings
master

搜索帮助