标签:tin [] continue blog .cpp app type nbsp ica
// TemplateFunction.cpp : Defines the entry point for the console application. // #include "stdafx.h" template<typename T> T MyMax(T a,T b) { return a>b ? a : b; } int main(int argc, char* argv[]) { int i=MyMax<int>(1,3); int j=MyMax(1,0); printf("%d\n%d\n",i,j); return 0; } // 3 // 1 // Press any key to continue
标签:tin [] continue blog .cpp app type nbsp ica
原文地址:http://www.cnblogs.com/sky20080101/p/6399697.html