对于cstdarg宏用于不定参数列表不是很熟悉,做个小练习:-)
#include <iostream>
#include <cstdarg>
typedef int Elem;
using namespace std;
Elem MaxInt(int n,...)
{
va_list ap;
Elem max,tmp;
int i;
va_start(ap,n);
if(n<1)
&n[......]
不定参数列表的小练习:-)
Leave a reply