字符串转short函数
时间: 2024-06-18 17:05:08 浏览: 143
字符串转换
字符串转short函数是将一个字符串转换为short类型的函数。在C++中,可以使用库函数stoi()来实现。这个函数接受一个字符串参数,并返回相应的short值。如果转换失败,则会抛出一个异常。
以下是一个使用stoi()函数将字符串转换为short的示例代码:
```
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "1234";
short s = stoi(str);
cout << s << endl;
return 0;
}
```
阅读全文