我在eclipse CDT中使用C ++,我正在尝试使用strtoull
将字符串转换为uint64_t,但每次我收到以下错误消息 -
..\src\HelloTest.cpp:39:42: error: strtoull was not declared in this scope
以下是我的C ++示例
#include <iostream>
#include <cstring>
#include <string>
using namespace std;
int main() {
string str = "1234567";
uint64_t hashing = strtoull(str, 0, 0);
cout << hashing << endl;
}
return 0;
}
我在做什么事吗?
答案 0 :(得分:1)
为什么你的解决方案不起作用已被其他人指出。但是还没有一个好的选择。
尝试使用C ++ 03 strtoull
代替:
#include <string>
#include <cstdlib>
int main()
{
std::string str = "1234";
// Using NULL for second parameter makes the call easier,
// but reduces your chances to recover from error. Check
// the docs for details.
unsigned long long ul = std::strtoull( str.c_str(), NULL, 0 );
}
或者,从C ++ 11开始,直接从std::string
通过stoull
(这只是上面的包装器,但在中保存一个include和一个函数调用) 代码):
#include <string>
int main()
{
std::string str = "1234";
// See comment above.
unsigned long long ul = std::stoull( str, nullptr, 0 );
}
如果您有替代方案,请不要使用char[]
或指针。 C ++的黑暗面,他们是。更快,更容易,更诱人。如果你从黑暗的道路开始,永远将它统治你的命运,消耗你的意志。 ; - )
答案 1 :(得分:0)
strtoull的结构是:strtoull(const char *,char * *,int) 你已经给它一个std :: string,正如@juanchopanza所指出的那样
这是我提出的解决方案
#include <iostream>
#include <cstring>
#include <string>
#include <cstdlib>
using namespace std;
int main() {
char str[] = "1234567";
unsigned long long ul;
char* new_pos;
charDoublePointer = 0;
ul = strtoull(str, &new_pos, 0);
cout << ul << endl;
return 0;
}
我得到的输出是:1234567 直接从日食控制台。
同样在你的程序结束时,你可以使用额外的大括号返回0范围。