gpt4 book ai didi

c++ - 为什么没有 std::stou?

转载 作者:可可西里 更新时间:2023-11-01 18:40:00 28 4
gpt4 key购买 nike

C++11 添加了一些新的字符串转换函数:

http://en.cppreference.com/w/cpp/string/basic_string/stoul

包括stoi(字符串转int)、stol(字符串转long)、stoll(字符串转long long)、stoul(字符串转unsigned long)、stoull(字符串转unsigned long long)。值得注意的是一个 stou(字符串到无符号)函数。是否有某种原因不需要它,但所有其他的都需要?

相关:No "sto{short, unsigned short}" functions in C++11?

最佳答案

最简单的答案是 C 库没有相应的“strtou”,而 C++11 字符串函数只是 C 库函数的薄薄的包装:std::sto* 函数镜像 strto*std::to_string 函数使用 sprintf


编辑:正如 KennyTM 指出的那样,stoistol 都使用 strtol 作为底层转换函数,但为什么同时存在使用strtoulstoul,没有对应的stou

关于c++ - 为什么没有 std::stou?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21254832/

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