如何在不同的头文件中使用头文件的向量?

时间:2014-03-06 21:07:58

标签: c++ vector header-files

我正在尝试将头文件中的字符串向量用于不同的头文件。 我不是专业人士,我当然没有最好的代码,但有人可以帮助我编译并使用我的其他标题中的向量吗?

我的代码在这里: MyCourse.h:

#ifndef MYCOURSE_H
#define MYCOURSE_H

#include "MyStudent.h"
#include <iostream> 
#include <vector>
#include <string>
using namespace std;

class MyCourse 
{
public:
    vector <string> allStudents;

    void addStudent() {
        int studentCounter;
        cout << "How many students would you like to add to your class ?" << endl;
        cin >> studentCounter;

        for (int i = 0; i < studentCounter; i++) {
            string Name;
            cout << "What is the student’s name?" << endl;
            cin >> Name;
            allStudents.push_back(Name);
        }
        char ch;
        cout << "Would you like to add more students to the list ? (y or n)" << endl;
        cin >> ch;

        if (ch == 'y') {
            addStudent();
        }
    }
};

#endif

和MyStudent.h:

#ifndef MYSTUDENT_H 
#define MYSTUDENT_H 

#include <iostream> 
#include <vector>
#include <string>
using namespace std;
#include "MyCourse.h" 

class MyStudent
{
public:
    vector <double> assignScores;

void addAssignScore(){
        for (int f = 0; f < allStudents.size() ; f++) { //  allStudents is undefined
            double sc;
            cout << "What is " << allStudents[f] << "'s score in the assignment ?" << endl;
            cin >> sc;
            assignScores.push_back(sc);
        }
    }

我不知道为什么allStudents未定义,当它在名为MyCourse.h的头文件中定义时,此头文件包含在MYStudent.h头文件中,但仍未定义。

1 个答案:

答案 0 :(得分:3)

您需要将包含MyCourse的{​​{1}}实例传递给allStudents的构造函数或成员函数MyStudent

这样的事情:

addAssignScore

我知道您想要完成作业的截止日期,但您的设计并不理想。您没有正确使用类,只是作为正交容器和函数的包装器。他们唯一的关系是同等数量的学生和分数。您也可以使用void addAssignScore(const MyCourse& course){ for (int f = 0; f < course.allStudents.size() ; f++) { double sc; cout << "What is " << course.allStudents[f] << "'s score in the assignment ?" << endl; cin >> sc; assignScores.push_back(sc); } }

编辑以回答您的评论:

在你的main.cpp中。你这样使用它:

std::map<std::string, double>