程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++11-關於c++string中的stoi用法

c++11-關於c++string中的stoi用法

編輯:編程綜合問答
關於c++string中的stoi用法

#include
#include
using namespace std;

int main()
{
string str = "89";
int i = stoi(str);
cout << i;
return 0;
}
我的編譯器是codeblocks13.12 已經調過按照c++11的標准編譯

最佳回答:


stoi當字符串不符合規范時,會拋出異常,所以你應該捕獲異常來做

 #include <stdexcept>

std::string y = "2323298347293874928374927392374924"
int x;

try {
  x = stoi(y);
}
catch(std::invalid_argument& e){
  // if no conversion could be performed
}
catch(std::out_of_range& e){
  // if the converted value would fall out of the range of the result type 
  // or if the underlying function (std::strtol or std::strtoull) sets errno 
  // to ERANGE.
}
catch(...) {
  // everything else
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved