gpt4 book ai didi

c++ - 确定 vsprintf 输出的大小

转载 作者:行者123 更新时间:2023-11-27 23:43:54 30 4
gpt4 key购买 nike

我正在为一个类实现一个类似 printf(const char * format, ...) 的方法,我需要确定它输出的确切大小,只给定提供的 format va_list 中给出的参数,然后调用 vsprintf() 执行实际写入。

是否有一个函数可以采用formatva_list来生成输出的精确长度?

最佳答案

来自 example in the documentation ,您可以确定第一个必要的缓冲区大小(强调我的):

std::vector<char> buf(1+std::vsnprintf(NULL, 0, fmt, args1)); // <<<
va_end(args1);
std::vsnprintf(buf.data(), buf.size(), fmt, args2);

4) Writes the results to a character string buffer. At most buf_size-1 characters are written. The resulting character string will be terminated with a null character, unless buf_size is zero. If buf_size is zero, nothing is written and buffer may be a null pointer, however the return value (number of bytes that would be written not including the null terminator) is still calculated and returned.

通常 <x>sprintf() 的所有变体如果目标缓冲区参数作为 NULL 传递,函数系列可用于计算必要的缓冲区大小或 nullptr .

关于c++ - 确定 vsprintf 输出的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52350241/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com