如何跨平台将 char* 转换为 long long (64位)?

发布于 2024-12-04 04:28:04 字数 111 浏览 0 评论 0原文

如何将 char* 字符串转换为 long long(64 位)整数?

我使用 MSVC 和 GCC 编译器,我的平台是 Windows、Linux 和 MAC OS。

谢谢。

How can I convert a char* string to long long (64-bit) integer?

I use MSVC and GCC compilers and my platforms are Windows, Linux and MAC OS.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

花期渐远 2024-12-11 04:28:04

使用 strtoull 表示无符号 long long,使用 strtoll 表示有符号 long long。在任何 Unix(Linux、Mac OS X)上,输入 man strtoullman strtoll 以获取其描述。由于两者都是 C99 标准的一部分,因此它们应该可以在任何支持 C 的系统上使用。Linux 手册页也 有关于如何使用它们的示例

Use strtoull for unsigned long long or strtoll for signed long long. On any Unix (Linux, Mac OS X), type man strtoull or man strtoll to get its description. Since both are part of the C99 standard they should be available on any system that supports C. The Linux man pages also have examples on how to use them.

尐偏执 2024-12-11 04:28:04

对于具有支持 long long int 的编译器的 C++,我将使用 std::istringstream 对象。例如:

char* number_string;
//...code that initializes number_string

std::istringstream input_stream(number_string);
long long int i64_bit_type;
input_stream >> i64_bit_type;

For C++ with a compiler that supports long long int, I would use a std::istringstream object. For instance:

char* number_string;
//...code that initializes number_string

std::istringstream input_stream(number_string);
long long int i64_bit_type;
input_stream >> i64_bit_type;
〃温暖了心ぐ 2024-12-11 04:28:04
long long int i;

if(sscanf(string, "%lld", &i) == 1) { ... }
long long int i;

if(sscanf(string, "%lld", &i) == 1) { ... }
jJeQQOZ5 2024-12-11 04:28:04

boost::lexical_cast 可能是最简单的(在代码中)。请参阅http://www.boost.org/doc/libs/ 1_47_0/libs/conversion/lexical_cast.htm 了解更多信息。或者使用 stringstream 解析出数值。

boost::lexical_cast is probably the simplest (in code). See http://www.boost.org/doc/libs/1_47_0/libs/conversion/lexical_cast.htm for more info. Alternately use a stringstream to parse out the numeric value.

夏日浅笑〃 2024-12-11 04:28:04
 #include <stdlib.h>

 char serial[1000];

 long long var = _atoi64(serial);
 #include <stdlib.h>

 char serial[1000];

 long long var = _atoi64(serial);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文