1

さて、私は学校のプロジェクトに取り組んでおり、別のクラス内のクラスのリンクされたリスト (「目的」と呼ばれるクラス内のクラス「タスク」のリンクされたリスト) が必要です。 m STL クラスを使用します。これでほぼ設定が完了しましたが、私の表示機能では、タスクの内容を表示するためにイテレータを使用しています。しかし、エラーが発生するため、 taskList.begin() をイテレータに割り当てることはできません。

以下は、私が関連していると思われるコードです。

目的.h

    #ifndef OBJECTIVE_H
    #define OBJECTIVE_H
    #include <string>
    #include <list>
    #include "date.h"
    #include "task.h"
    using namespace std;
    namespace team2
    {
      class objective
      {
            private:
                string objective_name, objective_desc, resources[10];
                int category, priority, res_used;
                double time;
                date start, end;
                int status;
                std::list<task> taskList;

            public:
                // CONSTRUCTORS
                objective();
                objective(string objN, string objD, int c, int p, date s, date e, double t, string res[], int resU, int stat, list<task>& tList);

...

                // CONSTANT MEMBER FUNCTIONS
                void display() const;
...
      };
    }
    #endif

Objective.cpp (ここでエラーが発生します)

#include "objective.h"
#include "date.h"
#include <cstdlib>
#include <cassert>
#include <string>
#include <list>
#include "task.h"
using namespace std;

namespace team2
{
    void objective::display() const // display() - Displays the complete contents of a single objective
    {
        int days, hours, minutes;
        std::list<task>::iterator taskIterator;

        days = floor(time/24.0); // Find the max number of days based off of the time (in hours)
        hours = floor(time - days*24); // Find the max number of hours after deduction of days
        minutes = floor((time - (days*24 + hours))*60); // Find the number or minutes after taking into account hours and days

        cout << "\nObjective Name: " << objective_name << endl;
        cout << "Objective Description: " << objective_desc << endl;
        cout << "Category: Quad " << category << endl;
        cout << "Priority: " << priority << endl;
        cout << "Starting Date: " << start.getMonth() << "/" << start.getDay() << "/" << start.getYear() << endl;
        cout << "Ending Date: " << end.getMonth() << "/" << end.getDay() << "/" << end.getYear() << endl;
        cout << "Time Required: " << days << " Days " << hours << " Hours " << minutes << " Minutes " << endl;
        cout << "Resources: " << endl;
            if(res_used == 0)
                cout << "\tNo Resources" << endl;
            for(int i = 0; i < res_used; i++)
                cout << "\t" << resources [i] << endl;

        cout << "Current Status: ";
            if(status == 1)
                cout << "Completed" << endl;
            else if(status == 0)
                cout << "Incomplete" << endl;
        cout << "Tasks: " << endl;
            if(taskList.empty())
                cout << "\tNo Resources" << endl;
            for(taskIterator = taskList.begin(); taskIterator != taskList.end(); taskIterator++)
            {
                 (*taskIterator).display();
                 cout << endl;
             }
    }
}

タスク クラスは目的クラスとほぼ同じですが、いくつかのフィールドが省略されています。エラーは for ループで発生します。for(taskIterator = taskList.begin();...) 誰でも問題の原因を知っていますか? 必要に応じて、さらにコードを提供することもできます。前もって感謝します!

4

1 に答える 1

4

メソッドはconst、メンバーであるため、非反復子をtaskList持つことはできません。const

メンバー メソッドを作成することconstは、そのメソッドが非mutableクラス メンバーを変更したり、非constメンバー メソッドを呼び出したりしないという契約です。const非反復子を持つことで、その契約を破っています。

は const であるためdisplay、const イテレータを使用できます。

std::list<task>::const_iterator taskIterator;
于 2012-04-15T23:05:38.743 に答える