你用过哪些 C++ 标准库姿势来将一个字符串转换为整数或浮点数?
Anonymous Poll
`std::atoi` / `std::atof` 系列函数
`std::sscanf` 系列函数
`std::stringstream` 配合 `operator>>`
`std::strtol` / `std::strtof` 系列函数
`std::stoi` / `std::stof` 系列函数
`std::from_chars` 函数
`std::num_get`
这种东西我都是手搓
我还知道其他标准库姿势
6 votes