字符串下标超出范围错误“C ++”

时间:2014-02-02 17:21:10

标签: c++

此程序采用文本文件并将每个单词更改为pig Latin。我已经完成了所有工作,但继续得到错误“下标超出范围”。我试图改变很多东西,但不能让它消失。有人可以解释为什么我会收到此错误吗?

#include <iostream>
#include <fstream>
#include <string>   
#include <iomanip>  
using namespace std;

void piglatin ( string word[], string temp, ifstream & in, int num);

int main()
{
    string word[300];
    string original[300];
    string temp;
    ifstream in;
    int i=0,
        j=0,
        x=0,
        par=0,
        length=0;

    in.open("text.txt");

    if (in.is_open()) {       //Checks if file is open
        cout << "\nFile is open....\n\n\n";
    } else {
        cout << "Error: Failed to open!\n";       
        cout << "Exiting program\n";
        exit(-1);
    }
    cout<<"Original text\n\n";

    do {//Continues while loop until no more input. 
        in >> original[x];
        cout << original[x] << " ";
        x++;
        par = par + x;
    } while (!in.eof());

    cout<<"\n\n";
    cout<<"Pig Latin\n\n";
    piglatin(original,temp,in,par);

    return 0;
}

void piglatin ( string word[], string temp, ifstream & in, int num)
{
    int i=0, length, j=0,a=0;
    for(j = 0; j < num; j++) {
        string str (word[j]);
        length = str.size();
        temp[0] = word[j][0];

        if ((temp[0] == 'a') ||
            (temp[0] == 'e') ||
            (temp[0] == 'i') ||
            (temp[0] == 'o') ||
            (temp[0] == 'u'))
        {
            word[j] += "way";
        } else { 
            for(i = 0; i <= length-1; i++) {
                word[j][i] = word[j][i+1];
            }
            word[j][length-1] = temp[0];
            word[j] += "ay";
        }
        cout << word[j] << " ";
        length = 0;
    }
    cout << "\n\n";
}

2 个答案:

答案 0 :(得分:0)

本声明

temp[0] = word[j][0];

无效,因为字符串temp为空,您可能不会使用带有空字符串的下标运算符来存储字符。

您可以在for循环之前编写例如

temp.resize( 1 );

我也没有在参数temp中看到任何意义。您可以在函数局部变量char temp;中使用而不是字符串临时值,因为您只使用temp来存储一个字符。

答案 1 :(得分:0)

我相信你缺少ifstream的一个参数:ifstream对象需要两个参数,一个文件名和一个描述文件请求的i / o模式的模式。

in.open("text.txt");

应该是:

in.open("text.txt", ifstream::in);

以下是ifstream.open API的链接: http://www.cplusplus.com/reference/fstream/ifstream/open/