C 标准库 stdarg.h详解

stdarg.h定义于函数的可变参数相关的一些方法。

va_copy():it makes a copy of your va_list variable in the exact same state. va_copy() can be useful if you need to scan ahead through the arguments but need to also remember your current place.

接受可变函数作为参数的一些方法。

  • vprintf()
  • vfprintf()
  • vsprintf()
  • vsnprintf()
#include <stdio.h>
#include <stdarg.h>

int my_printf(int serial, const char *format, ...)
{
    va_list va;

    // Do my custom work
    printf("The serial number is: %d\n", serial);

    // Then pass the rest off to vprintf()
    va_start(va, format);
    int rv = vprintf(format, va);
    va_end(va);

    return rv;
}

int main(void)
{
    int x = 10;
    float y = 3.2;

    my_printf(3490, "x is %d, y is %f\n", x, y);
}

教程来源于Github,感谢大佬的无私奉献,致敬!

技术教程推荐

Elasticsearch核心技术与实战 -〔阮一鸣〕

Kafka核心源码解读 -〔胡夕〕

微信小程序全栈开发实战 -〔李艺〕

成为AI产品经理 -〔刘海丰〕

深入浅出分布式技术原理 -〔陈现麟〕

遗留系统现代化实战 -〔姚琪琳〕

Vue 3 企业级项目实战课 -〔杨文坚〕

手把手带你写一个MiniSpring -〔郭屹〕

云时代的JVM原理与实战 -〔康杨〕