C++函数模板举例
发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,#include using namespace std;templateT max(const T &a,const T &b,const T &c){ T temp=(a>b)?a:b;
#includeusing namespace std;template T max(const T &a,const T &b,const T &c){ T temp=(a>b)?a:b; return (temp>c)?temp:c;}int main(int argc, char *argv[]){ int a=10; int b=22; int c=15; cout<