首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

在C++里能不可不通过宏接收数目不定的参数

2013-07-09 
在C++里能不能不通过宏接收数目不定的参数?本帖最后由 shendaowu 于 2013-07-04 12:44:50 编辑有没有能放

在C++里能不能不通过宏接收数目不定的参数?
本帖最后由 shendaowu 于 2013-07-04 12:44:50 编辑 有没有能放不同类型的变量的容器?其他的实现方法也行。
[解决办法]
#define a(...) printf(__VA_ARGS__)

容器的话可以用tuple
[解决办法]
Visual C++ Language Reference 
Variadic Macros 

Variadic macros are function-like macros that contain a variable number of arguments.

Remarks
To use variadic macros, the ellipsis may be specified as the final formal argument in a macro definition, and the replacement identifier __VA_ARGS__ may be used in the definition to insert the extra arguments. __VA_ARGS__ is replaced by all of the arguments that match the ellipsis, including commas between them.

The C Standard specifies that at least one argument must be passed to the ellipsis, to ensure that the macro does not resolve to an expression with a trailing comma. The Visual C++ implementation will suppress a trailing comma if no arguments are passed to the ellipsis.

Support for variadic macros was introduced in Visual C++ 2005.

Example
  Copy Code 
// variadic_macros.cpp
#include <stdio.h>
#define EMPTY

#define CHECK1(x, ...) if (!(x)) { printf(__VA_ARGS__); }
#define CHECK2(x, ...) if ((x)) { printf(__VA_ARGS__); }
#define CHECK3(...) { printf(__VA_ARGS__); }
#define MACRO(s, ...) printf(s, __VA_ARGS__)

int main() {
   CHECK1(0, "here %s %s %s", "are", "some", "varargs1(1)\n");
   CHECK1(1, "here %s %s %s", "are", "some", "varargs1(2)\n");   // won't print


   CHECK2(0, "here %s %s %s", "are", "some", "varargs2(3)\n");   // won't print
   CHECK2(1, "here %s %s %s", "are", "some", "varargs2(4)\n");

   // always invokes printf in the macro
   CHECK3("here %s %s %s", "are", "some", "varargs3(5)\n");

   MACRO("hello, world\n");
   // MACRO("error\n", EMPTY);   would cause C2059
}
 
  Copy Code 
here are some varargs1(1)
here are some varargs2(4)
here are some varargs3(5)
hello, world
 

See Also
Concepts
Macros (C/C++)
Send feedback on this topic to Microsoft.

热点排行