c++ - 使用 vector 和 fstream 的代码中出现段错误 11? C++

标签 c++ vector segmentation-fault fstream

我正在尝试编写一个程序,该程序将一个 txt 文件作为输入,并使用文本文件中的单词生成一个 .h 文件(希望以后可以生成一个 .cpp 文件)。这段代码编译得很好,只是一旦它获得输入文件就会出现段错误 11。有人可以帮帮我吗?

#include <iostream>
#include <fstream>
#include "12337756_Library.cpp"
#include <string>
#include <vector>

using namespace std;

int main()
{
    bool a;
    string filename;
    string line;
    vector<string> Attr;

    cout << "Enter input file name:";
    getline(cin, filename);

    ifstream fin(filename.c_str());

    if (fin)
    {
        while(!fin.eof())
        {
            getline(fin, line);
            createNewFile(line);
            Attr.push_back(line); 
        }
        if(Attr[1]=="Movie.h")
        {
            bool x,y;
            //x=createNewFile(Attr[0]);
            y=createNewFile(Attr[1]);
            if(x)
            {
                ofstream fout(Attr[1].c_str());
                fout << "#ifndef HEADER_H_" << endl << "#define HEADER_H_" << endl;
                fout << "#include <iostream>" << endl << "#include <vector>" << endl;
                fout << "using namespace std;" << endl;
                fout << "enum Movie_Rating {G,PG,PG13,R,NC17,NR} ;" << endl;
                fout << endl << endl << endl;
                fout << "class Movie" << endl << "{"<< endl;
                fout << "public: " << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << "// ----- Constructors -----------------------------------" << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << endl << "Movie();" << endl << "Movie(const string& title);" << endl;
                fout << "Movie(const string& title, const string& director, Movie_Rating rating,unsigned int year,const string& path,const string& actor); " << endl;
                fout << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << "// ----- Destructor -------------------------------------" << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << endl;
                fout << "~Movie();" << endl << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << "// ----- Inspectors -------------------------------------" << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << endl;
                fout << "string getTitle() const;" << endl;
                fout << "string getDirector() const;" << endl;
                fout << "Movie_Rating getRating() const ;" << endl;
                fout << "unsigned int getYear() const ;" << endl;
                fout << "string getURL() const ;" << endl;
                fout << "string getActor(unsigned int i) const ;" << endl;
                fout << "int getActorNumber() const ;" << endl;
                fout << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << "// ----- Mutators ---------------------------------------" << endl;
                fout << "// ------------------------------------------------------" << endl;
                fout << endl;
                fout << "void setTitle(const string& title);" << endl;
                fout << "void setDirector(const string& director) ;" << endl;
                fout << "void setRating(Movie_Rating rating)  ;" << endl;
                fout << "void setYear(unsigned int year)  ;" << endl;
                fout << "void setURL(const string& path)  ;" << endl;
                fout << "void setActor(const string& actor);" << endl;
                fout << endl;
                fout << "//-----------------------------------------------------------" << endl;
                fout << "//------- Facilitators --------------------------------------" << endl;
                fout << "//-----------------------------------------------------------" << endl;
                fout << "void output(ostream & out);" << endl;
                fout <<"// ----------------------------------------------------------" << endl;
                fout <<"// ----------------------------------------------------------" << endl;
                int size = Attr.size();

                while(size!= 1)
                {
                    fout << Attr[size] << endl;
                    size--;
                }
                fout << "};" << endl;
            }
        }
    }
}

最佳答案

你只推回了一个 std::string 所以你的 vector 只包含 1 个元素。要访问该元素,请使用 Attr[0] 而不是 Attr[1](您在代码中的多个位置执行此操作)。请记住,在 C++ 中索引从 0 而不是 1 开始。

此外,在下面的代码中,size() 返回 1,因此永远不会进入 while 循环。

int size = Attr.size();

while(size!= 1)
{
    fout << Attr[size] << endl;
    size--;
}

关于c++ - 使用 vector 和 fstream 的代码中出现段错误 11? C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10324817/

相关文章:

c - 不确定如何将整数从文件存储到 c 中的结构

C++构造函数问题(linux)

c++ - 编译错误 - 静态成员

c++ - vector 中允许的事件迭代器的数量

c++ - 我正在尝试使用类 vector 编写代码

c++ - 为什么我不能在 gdb 调试器中使用 "print"访问 vector 中的值?

c++ - 尝试在 C++ 中创建一个对象数组

c++ - 将类作为函数参数传递

c++ - std::vector 需要有 dll 接口(interface)供类 'X<T> 警告的客户端使用

c++ - 添加#pragma loop 后出现段错误