【变参函数】自定义变参函数和语言标准常用查询网站

目录

定义变参函数

C C++带多个参数的宏(...与__VA_ARGS__详解)

常用查询网站



定义变参函数

1. 目的:自己编写一个类似printf变参格式的简单函数。

 printf原型:int printf (const char *format, ...);

2. C代码:

#include <stdio.h>
#include <stdarg.h> // va_start(), va_arg(), va_end()     


//定义打印若干个整数的变参函数
void arg_print (int n, ...) {
      va_list p; // 声明一个变量
      int i;

      va_start (p, n); // 初始化
      for(i = 0; i < n; i++)
        printf ("%d\t", va_arg(p, int) );
      printf ("\n");
      va_end (p);

      return;
}

int main(void) {
      arg_print(1,7); // 第一个参数表示变参列表参数个数,
      arg_print(2,7,8); // 第二个参数开始表示要输出的参数
      arg_print(3,7,8,9);

      return 0;
}

原文:https://www.cnblogs.com/KevinWong777/p/6502586.html

C C++带多个参数的宏(...__VA_ARGS__详解)

1. 环境

    gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)

2.'...'与__VA_ARGS__

这里的...代表多个参数,在宏展开时,编译器会经...的参数替换__VA_ARGS__

例1:main.c文件敲入如下代码

#define debug(format, ...) printf (format, __VA_ARGS__)

#include <stdio.h>
void main(){
    debug("Hello %s\n", "world");
}

使用预编译命令gcc -E main.c -o main.i看看展开后是什么效果:

void main(){
    printf ("Hello %s\n", "world");
}

3. 多参数别名

__VA_ARGS__这个名字似乎很难写,gcc支持另一种更加人性化的写法:

例2:

#define debug(format, args...) printf (format, args)

#include <stdio.h>
void main(){
    debug("Hello %s\n", "world");
}

展开后效果跟第一种写法是一样的:

void main(){
    printf ("Hello %s\n", "world");
}

4. 空参数与##

前面两个例子都传入了两个参数,如果...没有传进参数会发生什么事情呢:

#define debug(format, ...) printf (format, __VA_ARGS__)

#include <stdio.h>
void main(){
    debug("Hello world\n");
}

展开后:

void main(){
 printf ("Hello world\n", );
}

可以看到Hello world后面带来一个,
这个时候就会导致编译出错。##的出现就是为了解决这个问题:
当...没有传进参数时,预编译器会将最后面的,删除

#define debug(format, ...) printf (format, ##__VA_ARGS__)

#include <stdio.h>
void main(){
    debug("Hello world\n");
}

展开后效果:

void main(){
    printf ("Hello world\n");
}

5. 稍微复杂的例子

项目中也会加上调用的行号,方法名称以方便debug:

#define __log(...)                  \
    do                              \
    {                               \
        printf(__VA_ARGS__);        \
    } while(0)      

#define __format(__fmt__) "%d " __fmt__ "\n"

#define log(__fmt__, ...)                                  \
    do                                                     \
    {                                                      \
        __log(__format(__fmt__), __LINE__,##__VA_ARGS__);  \
    }while(0)

#include <stdio.h>
void main(){
    log("Hello %s", "world");
}

6. 总结

一定要看官方文档,看官方文档,看官方文档。重要的事情说三遍,尽早养成看官方文档的习惯。
6. Referance:

    https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc.pdf
原文:https://blog.csdn.net/fenjiehuang/article/details/79445593

常用查询网站

https://www.yiibai.com/c_standard_library/c_macro_va_start.html

VS:https://docs.microsoft.com/en-us/cpp/mfc/windows-sockets-byte-ordering?view=vs-2019

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值