gpt4 book ai didi

c++ - 为什么在 visual studio 2013/2015 上出现 vsnprintf 崩溃?

转载 作者:行者123 更新时间:2023-11-28 02:34:31 24 4
gpt4 key购买 nike

#include <string>
#include <stdarg.h>
#include <stdio.h>
#include <memory>

void kekeTrace(const char* format, ...)
{
char buff[1000] = { 0 };
va_list argList;
va_start(argList, format);
vsnprintf(buff, 1000, format, argList);
va_end(argList);
}

int main()
{
std::shared_ptr<int> obj(new int(3));
kekeTrace("%x,%d,%s\n", obj, 1, "w"); //crash
kekeTrace("%x,%s\n", obj, "w"); // do not crash
return 0;
}

第一次调用 kekeTrace 会崩溃,但第二次调用不会。为什么?

最佳答案

这两行都是未定义的,所以它们可能会或可能不会崩溃,并且可能会或可能不会输出一些东西。

如今,编译器通常足够聪明,可以警告 printf 等格式字符串中不支持的类型,但由于您正在调用自己的函数,编译器不知道您要做什么用它来做。

您需要传递底层指针:使用obj.get()

关于c++ - 为什么在 visual studio 2013/2015 上出现 vsnprintf 崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27960240/

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