gpt4 book ai didi

c++ - c++ 中的 stoi 关键字使用什么库

转载 作者:行者123 更新时间:2023-11-28 06:01:15 25 4
gpt4 key购买 nike

我的问题很简单,但我似乎找不到答案。我想知道在使用 stoi 时要包含什么库。我使用的是 atoi 并且它与

一起工作正常
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;

但是当我使用 stoi 运行时,我得到“stoi not declared”。谢谢

最佳答案

您需要 #include <string>并使用理解 C++11 的编译器。最小示例:

#include <string>
#include <cassert>

int main()
{
std::string example = "1234";
int i = std::stoi(example);
assert(i == 1234);
return 0;
}

编译,例如,使用g++ -std=c++11 .

关于c++ - c++ 中的 stoi 关键字使用什么库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33260074/

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