博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
va_list用法
阅读量:6619 次
发布时间:2019-06-25

本文共 1436 字,大约阅读时间需要 4 分钟。

怎样写出一个可以处理想printf一样能够处理可变长参数的函数呢。

看printf的定义:

int printf(char *fmt, ...);

C语言标准库中头文件stdarg.h索引的接口包含了一组能够遍历变长参数列表的宏。主要包含下面几个:

1、va_list 用来声明一个表示参数表中各个参数的变量。

2、va_start 初始化一个指针来指向变长参数列表的头一个变量(注意,...只能出现在参数表的最后)

3、va_arg每次调用时都会返回当前指针指向的变量,并将指针挪至下一个位置,参数的类型需要在这个调用的第二个参数来指定,va_arg也是根据这个参数来判断偏移的距离。

4、va_end需要在函数最后调用,来进行一些清理工作。

下面上一个简单的例子。

1 #include 
2 #include
3 #include
4 5 6 void write_log( char *fmt, ...) 7 {
8 va_list va; 9 char buf[1024]; 10 11 va_start(va, fmt); 12 memset(buf, 0, 1024); 13 (void) vsprintf(buf, fmt, va); 14 va_end(va); 15 16 printf("%s-%s", "my_log_prehead", buf); 17 } 18 19 20 void read_num(int num, ...) 21 {
22 va_list va; /*point to each unamed variables in arg list*/ 23 va_start(va, num); /*start va_list from num, and va goes to the second one, and this is the first vary variable*/ 24 while(num--) 25 {
26 printf("%d\t", va_arg(va, int)); /*get a arg, va goes to the next*/ 27 } 28 va_end(va); /*end the va*/
29 } 30 31 int main() 32 {
33 write_log("%s\n", "hello world!"); 34 read_num(3, 111, 222, 333); 35 return 0; 36 }

结果输出:

[wren@buster c_prime]$ ./read_num

my_log_prehead-hello world!
111 222 333

vsprintf中va_list的用法也是经常会产生误会的地方,留在这里,以供参考。

 

 

转载于:https://www.cnblogs.com/renweiblog/archive/2011/11/06/2238106.html

你可能感兴趣的文章
ubuntu下安装jdk
查看>>
python操作数据库-安装
查看>>
kuangbin专题七 POJ3264 Balanced Lineup (线段树最大最小)
查看>>
JS动画效果链接汇总
查看>>
P1197 [JSOI2008]星球大战
查看>>
XML转义字符
查看>>
校园的早晨
查看>>
16.1 Tomcat介绍
查看>>
十周三次课
查看>>
我的友情链接
查看>>
刺激用户危机意识,实现快速盈利的营销思维
查看>>
植物大战僵尸
查看>>
原创文章
查看>>
理解JavaScript私有作用域
查看>>
BZOJ 1012: [JSOI2008]最大数maxnumber【线段树单点更新求最值,单调队列,多解】
查看>>
nginx配置文件中location说明
查看>>
连载-第1章绪论 1.1嵌入式系统概述
查看>>
UltraVNC
查看>>
详解synchronized
查看>>
Spring Cloud第二篇 创建一个Eureka Server
查看>>