C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了向量下标超出范围错误,C大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
当我尝试运行此程序时,我收到一个错误,该程序暂停程序并说“向量下标超出范围”

知道我做错了什么吗?

#include <vector>
#include <String>
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
using namespace std;

//(int argc,char* argv[]
int main()
{
    fstream bookread("test.txt");
    vector<String> words;

    bookread.open("test.txt");
    if(bookread.is_open()){
        cout << "opening textfile";
        while(bookread.good()){
            String input;
            //getline(bookread,input);
            bookread>>input;
            //String cleanedWord=preprocess(input);         
            //char first=cleanedWord[0];
            //if(first<=*/
            //cout << "getTing words";
            //getWords(words,input);
        }
    }
    cout << "all done";

    words[0];

getchar();
}

解决方法

你永远不会在单词vector中插入任何东西,所以行字[0];是非法的,因为它访问它的第一个元素,它不存在.

大佬总结

以上是大佬教程为你收集整理的向量下标超出范围错误,C全部内容,希望文章能够帮你解决向量下标超出范围错误,C所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。