将字符串转换为整数?

时间:2013-12-08 16:49:36

标签: c++ string function int base

我正在创建一个输入字符串类编号并将其转换为整数的函数。

例如,

。我冲进去123我会以整数形式回到123,或者我在1D2F中冲我...我想我回来了?但我想我会把任何基数改回小数。 (但是如果我不完全确定你能用字符串有效地进行数学运算,我怎么能把这个字符串变成小数呢?

到目前为止,我的stringToInt函数已经到了。

int StringToInt (string inputString){
   int i;
   int newIntegerLine;

      for (i=0; i<inputString.length();i++){
         //subtracts the ascii number of 0 from
         //whatever character you input
         newIntegerLine= (inputString.at(i)- '0');
      }

   return newIntegerLine;
}

我想我可以使用ascii数字来获取整数字符。但是,当我运行它时,我把它返回为0.我真的不知道如何处理基数问题(如何处理A-F,也许是if语句?有更优雅的方法吗?)。我可以在StringToInt函数中调用我的基函数吗?或者我已经可以使用一个功能来完成这个任务?我只是让事情变得复杂吗?

我的基本功能(我觉得这似乎有用吗?当我打入100并且在基数2中说它得到24时,似乎有二进制数的轻微问题,因为它的十进制等效。否则它完美地工作。)

int baseToDecimal (int numInput, int base){
   int i, modSum;
   modSum=numInput%10;
   for(i=base;(numInput/=10)!=0;i*=base)
      modSum+=numInput*i;
   return modSum;
   }

1 个答案:

答案 0 :(得分:2)

旧的C路(atoi):

std::string foo = "1337";
int bar = atoi(foo.c_str());

使用std::istringstream

std::string foo = "1337";
int bar;
std::istringstream(foo) >> bar;

C ++ 11的std::stoi

std::string foo = "1337";
int bar = std::stoi(foo);

引擎盖使用std::strtol

std::string foo = "1337";
int bar = std::strtol(foo.str(), nullptr, 10);

并为@polkadotcadaver提及boost::lexical_cast添加一个示例:

std::string foo = "1337";
int bar = boost::lexical_cast<int>(foo);

不要忘记添加适当的错误处理