std :: istringstream iss(std :: move(string));虽然它是侧循环,但仍然会进行初始化

时间:2013-08-26 03:27:20

标签: c++ c++11

最初我在while循环中写了std::istringstream iss(std::move(string));所以在循环内部给出了错误crosses initialization。现在它不在任何循环中,但即使它给出了错误crosses the initialization

void *SocketHandler(void *lp)
{
    typedef std::unordered_map<std::string,int> occurrences;
    occurrences s1;
    std::string ss;
    std::ostringstream bfr;
    std::string result_string;
    std::vector<std::string> most;
    int max_count = 0;
    int tmp=0;

    while ((NULL != word) && (50 > i)) {
        ch[i] = strdup(word);
        excluded_string[j]=strdup(word);
        word = strtok(NULL, " ");
        skp = BoyerMoore_skip(ch[i], strlen(ch[i]) );
        bfr << excluded_string[j] << " ";
        result_string = bfr.str();
        j++;
        //  std::cout << "string is :" << r1;
        i++;
        if(str==NULL && str==NULL and skp !=NULL)
        {
            pcount=0;
            ncount=0;
        }
    }
    std::cout << "string is :" << result_string << "\n";
    std::istringstream iss(std::move(result_string));  // **Here it gives error**

    while (iss >> result_string)
    {
        tmp = ++s1[result_string];
        if (tmp == max_count)
        {
            most.push_back(result_string);
        }
        else if (tmp > max_count)
        {
            max_count = tmp;
            most.clear();
            most.push_back(result_string);
        }
    }

    std::cout << std::endl << "Maximum Occurrences" << std::endl;
    for (std::vector<std::string>::const_iterator it = most.cbegin(); it != most.cend(); ++it)
        std::cout << *it << std::endl;

    return 0;
}

1 个答案:

答案 0 :(得分:0)

此处出现交叉初始化:std::istringstream iss(std::move(string));

std::istringstream iss; 
iss.str(result_string);

相当于std::istringstream iss(std::move(result_string));解决了问题

正如@Dietmar解释的那样:

这里没有str()重载采用std :: string&amp;&amp;但只有一个采用std :: string const&amp ;.毕竟,流不会使用std :: string,只是将字符复制到其内部缓冲区(现在可以保证std :: string使用连续内存来表示它们的值,std:stringbuf可以在内部使用主要使用std :: string但是流缓冲区想要提供未使用的空间,至少对于输出而言,缓冲区在输入和输出之间共享)。