17 Star 242 Fork 115

Yj / CPlusPlusThings

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
函数模板.cpp 483 Bytes
一键复制 编辑 原始数据 按行查看 历史
hu.fwh 提交于 2021-02-24 00:49 . FIXED issues#70 issues#106
#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;
system("pause");
return 0;
}
C++
1
https://gitee.com/yj404/CPlusPlusThings.git
git@gitee.com:yj404/CPlusPlusThings.git
yj404
CPlusPlusThings
CPlusPlusThings
master

搜索帮助