84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
形参 (parameters) 类似
f(a, ...)
的形式。
那么函数体应该如何实现?
认证0级讲师
既然题主问的是C++,那么
template<typename ...T> void f(int a, T... t);
当然是这样,然后你就可以通过简单的模板元编程技巧,来访问t里面的每一个值了。
问题描述的不是很清楚,我假定你是想知道C语言的...参数怎么获取,看看va_list, va_start之类的怎么使用。http://en.cppreference.com/w/cpp/utility/variadic/va_starthttp://en.cppreference.com/w/cpp/utility/variadic/va_list
...
va_list
va_start
既然题主问的是C++,那么
当然是这样,然后你就可以通过简单的模板元编程技巧,来访问t里面的每一个值了。
问题描述的不是很清楚,我假定你是想知道C语言的
...
参数怎么获取,看看va_list
,va_start
之类的怎么使用。http://en.cppreference.com/w/cpp/utility/variadic/va_start
http://en.cppreference.com/w/cpp/utility/variadic/va_list