使用string.size()时获得无限循环

时间:2014-05-03 18:16:42

标签: c++ string infinite-loop

#include <iostream>
#include <fstream>
#include <cstring>
#define MAX_CHARS_PER_LINE 512
#define MAX_TOKENS_PER_LINE 20
#define DELIMITER " "
using namespace std;
int main ()
{
    string buf = "PiCalculator(RandGen *randGen, int nPoints) : randGen(randGen), nPoints(nPoints) {";
    string buf1 = buf;

    // parse the line into blank-delimited tokens
    int n = 0;
    string token[MAX_TOKENS_PER_LINE] = {};
    token[0] = strtok(&buf[0], DELIMITER);
    if (token[0].size()) // zero if line is blank
    {
      for (n = 1; n < MAX_TOKENS_PER_LINE; n++)
      {
        token[n] = strtok(0, DELIMITER); // subsequent tokens
        if (token[n].size() == 0) break; // no more tokens
      }
    }
    cout<<endl<<endl;
    // process (print) the tokens
    for (int i = 0; i < n; i++) { // n = #of tokens
       int pos=token[i].find('(');
       if(pos == token[i].size())
            continue;
       else{
        cout<<token[i].substr(0,pos)<<endl;
       }
    }
  return 0;
}

使用这个程序,我想在&#39;之前排序子字符串(&#39;即PiCalculator。但是,当我运行上面的程序时,我得到一个无限循环。无法解决问题。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

如果你只想要以空格分隔的话,那就是#34; (或者你想要称之为令牌或者你想要的东西),C ++中有一些功能可以非常简单地为你完成:

string buf = "PiCalculator(RandGen *randGen, int nPoints) : randGen(randGen), nPoints(nPoints) {";

std::istringstream iss(buf);
std::vector<std::string> tokens;

std::copy(std::istream_iterator<std::string>(iss),
          std::istream_iterator<std::string>(),
          std::back_inserter(tokens));

以上代码将复制所有(空格分隔的)&#34;令牌&#34;从字符串buf到向量tokens

参考文献: