gpt4 book ai didi

c++ - c++ 中的 stoi 和 stoll

转载 作者:太空狗 更新时间:2023-10-29 19:53:22 26 4
gpt4 key购买 nike

我在程序顶部的声明中有#include(string),但是当我尝试运行 stoi(string) 或 stoll(string) 时,出现以下错误。我正在运行 Cygwin g++ v4.5.3。

Z:\G\CSCE 437>g++ convert.cpp -o conv convert.cpp: In function void transfer(std::string*)':
convert.cpp:103:36: error:
stoll' was not declared in this scope convert.cpp:116:35: error: `stoi' was not declared in this scope

    fileTime[numRec] = stoll(result[0]);    //converts string to Long Long
if(numRec = 0){
beginningTime = fileTime[0];
}
fileTime[numRec] = timeDiff;
hostName[numRec] = result[1];
diskNum[numRec] = stoi(result[2]);
type[numRec] = result[3];
offset[numRec] = stoi(result[4]);
fileSize[numRec] = stoi(result[5]);
responseTime[numRec] = stoi(result[6]);`

其中 result 是一个字符串数组。

最佳答案

这些函数是 C++11 中的新函数,GCC 仅在您使用命令行选项 -std=c++11 指定该语言版本时才可用。 (或在某些旧版本上为 -std=c++0x;我认为您将需要 4.5 版)。

如果由于某种原因您不能使用 C++11,您可以使用字符串流进行转换:

#include <sstream>

template <typename T> from_string(std::string const & s) {
std::stringstream ss(s);
T result;
ss >> result; // TODO handle errors
return result;
}

或者,如果您感到自虐,C 函数在诸如 strtoll 中在 <cstring> 中声明.

关于c++ - c++ 中的 stoi 和 stoll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14590410/

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