gpt4 book ai didi

c++ - Visual Studio 2008 中是否有 stoll()/stroll()(string to long long)替代方法

转载 作者:可可西里 更新时间:2023-11-01 10:01:47 27 4
gpt4 key购买 nike

对于 stoll() 是否有替代方案,内置于 Windows 或兼容 Apache 许可证?对于 Visual Studio 2008。即使安装 windows 7 平台 SDK 也不会将 stoll() 添加到字符串 header 。

在 unix 上,相同的函数被称为 strtoll() .

最佳答案

您可以使用 _strtoi64 .它在 stdlib.h 中声明。

long long num = _strtoi64(str, NULL, 10);

类似于strtoll ,您可以将 char ** endptr 作为第二个参数传递。如果是这样,*endptr 将被设置为第一个无效字符(可能是正常的空终止符)。

关于c++ - Visual Studio 2008 中是否有 stoll()/stroll()(string to long long)替代方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3106026/

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