C++ 将string类型转为short或int型
时间: 2023-04-09 16:01:58 浏览: 361
输入C-串的string承载方式-C++面向对象程序设计教程 第3章 数据类型
可以使用stoi函数将string类型转为int型,也可以使用stol函数将string类型转为long型,使用stoll函数将string类型转为long long型,使用stoul函数将string类型转为unsigned long型,使用stoull函数将string类型转为unsigned long long型,使用stoi函数将string类型转为short型,使用stoul函数将string类型转为unsigned short型。
阅读全文