大家对
va_list , va_start,va_arg,va_end 不陌生吧? 对scanf, printf类型
(如sscanf,sprintf)的带可变参数的函数的原理知道多少呢? 如果有兴趣了解的
话,推荐大家阅读: http://www.cnblogs.com/acutus/p/variable-parameter.html
当然,值得指出的是,作者后来给出的“支持可变参数的函数”的实现代码是有
问题的。在此贴上小弟改正后的代码,如下:
- #include <stdio.h>
- #define __va_rounded_size(TYPE) \
- (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
- void var_args_func(const char * fmt, ...)
- {
- char *ap;
- printf(" sizeof(fmt) = %d \n", sizeof(fmt));
- ap = ((char*)&fmt) + sizeof(fmt);
- printf("%d\n", *(int*)ap);
- ap = (char *)ap + __va_rounded_size(char);
- printf("%d\n", *(int*)ap);
- ap = ap + __va_rounded_size(char);
- printf("%s\n", *((char**)ap));
- }
- int main()
- {
- var_args_func("%d %c %s\n", 4, 'a', "hello world");
- return 0;
- }