gpt4 book ai didi

C++ sscanf 显示意外行为

转载 作者:行者123 更新时间:2023-11-30 02:06:52 28 4
gpt4 key购买 nike

我有一个看起来像 L"\"4\"" 的字符串,我想将它解析为一个整数值。

std::wstring wsFoo(L"\"4\"");
int iSize = 1; // Number of characters the number will have
int iResult = -1;
swscanf_s(wsFoo.c_str(), L"\"%*d\"", iSize, &iResult);
wprintf_s(L"%d", iResult);

根据 http://www.cplusplus.com/reference/clibrary/cstdio/printf/ %*d 中的星号应表示:格式字符串中未指定宽度,但作为必须格式化的参数之前的附加整数值参数。

然而 iResult 的值将在这段代码之后显示为 -1。为什么?

我不知道它是否有帮助,但我使用的是 MSVC++ 2010。

最佳答案

This MSDN page解释 * like 的用法:

An asterisk (*) following the percent sign suppresses assignment of the next input field, which is interpreted as a field of the specified type. The field is scanned but not stored.

请注意,printf 和 scanf 的格式字段很接近但不完全相同。

关于C++ sscanf 显示意外行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8460357/

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