''而是来自文件的普通文本

时间:2018-02-14 17:22:19

标签: c++ file multidimensional-array ifstream cout

我有这段代码的文件:

start:
    var: a , b , c;
    a = 4;
    b = 2;
    c = a + b;
    wuw c;
    end;/

我创建了一个包含我的代码所在的字符数组的类:

class file{               //class of program file
    private:
    ifstream File;        //file
    char text[X][Y];      //code from file

来自文件的信息我使用类的构造函数加载到数组:

   file(string path)
    {
         File.open(path); //open file

         for(int x = 0 ; x < X ; x++)
         {  
              for (int y = 0; y < Y ; y++) text[x][y] = File.get();     
         }
    }

在类中,我有从数组写入控制台文本的函数:

void write()
{                        
    for (int x = 0 ; x < X ; x++)
    {
         for (int y = 0 ; y < Y ; y++) cout << text[x][y];

    }
}

但是在调用write()函数之后我有了这个文本:

start:
    var: a , b , c;
    a = 4;
    b = 2;

    c = a + b;
    wuw c;
    end;/

������������ 
���������������������������������������� 
���������������������������������������� 
���������������������������������������� 
���������������������������������������� 
���������������������������������������� 

1 个答案:

答案 0 :(得分:5)

vector<string> text的大小与文件的大小不对应。这不仅浪费,而且在这种情况下,它会导致您读取文件的末尾。更好的设计是定义ifstream File。使用有效的text,您可以在构造函数的主体中填充此for(string i; getline(File, i); text.push_back(i)); ,如下所示:

write

从那里开始,您还需要调整copy(cbegin(text), cend(text), ostream_iterator<string>(cout, "\n"));

no_zero

您还需要进行安全检查,确保传递到ret_char和{{1}}的索引有效,但其余代码应按原样运行。

Live Example