函数模板特化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数模板特化相关的知识,希望对你有一定的参考价值。
#include <iostream> template <typename T> T max(T x, T y) { return x > y ? x : y; } //函数模板特化 template <> const char* max(const char* x, const char* y){ return strcmp(x, y) > 0 ? x : y; } int main(){ std::cout << max(1, 2); std::cout << max("hello", "world"); return 0; }
以上是关于函数模板特化的主要内容,如果未能解决你的问题,请参考以下文章
C++模板详解:泛型编程模板原理非类型模板参数模板特化分离编译