0

プロジェクトの学校記録用のデータベースを作成しています。私にはStudent、Faculty、およびAdministratorクラスがあり、これらはすべてPersonクラスからのものを継承しています。さまざまなオブジェクトをノードに追加すると、情報はそのノードに格納されます(デバッガーで確認できます)が、ノードを印刷すると、次のようになります。

00266A88

それ以外の

Full Name: Reed
M Number: 999
Email:

等々。

何が問題を引き起こしているのかよくわかりません。リストからノードを出力する私の方法は次のとおりです。

template <typename T>
void TemplatedList<T>::printSpecific(int m_Number)
{
Node * Current = Head;

//If there is nothing in the list but the dummy head node, then return because there's nothing to print
if(Head->next == NULL)
{
    cout << "Cannot print (M" << m_Number << "), NOT found!" << endl;
    return;
}
else
    Current = Current->next;

// While Current->next isn't equal to NULL, go through the list and see if the M-Numbers match. If they do, print the student and return
while(Current->next != NULL)
{
    if(m_Number == Current->data->getM_Number())
    {
        cout << Current->data;
        return;
    }
    else
    {
        Current = Current->next;
    }
}

if(Current->next == NULL)
{
    if(m_Number == Current->data->getM_Number())
    {
        cout << Current->data;
        return;
    }
    else
    {
        cout << "Cannot print (M" <<m_Number << "), NOT found!" << endl;
        return;
    }
}

}

オブジェクトの1つをリストに追加する関数は次のとおりです。

template<typename T>
void TemplatedList<T>::addTemplatedList(T newAddition)
{
//Points to current node we're using
Node* Current = Head;
//Points to the node previous in the list to the current
Node* Previous = Head;
//Creates a new Node
Node* newNode = new Node;
//Assigns new Student information to new Node
newNode->data = newAddition;

// Check to see if the Head is only thing in the list. If it is, just place the new Node directly after the Head
if (Head->next == NULL)
{
    Head->next = newNode;
    newNode->next = NULL;
    return;
}


else
{

    while (Current->next != NULL)
    {
        if (newAddition->getM_Number() < Current->next->data->getM_Number())
        {
            newNode->next = Current->next;
            Previous->next = newNode;
            return;
        }

        else if (newAddition->getM_Number() == Current->next->data->getM_Number())
        {
            cout << "Person with M Number " << newAddition->getM_Number() << " not added because they are already in database." << endl;
            delete newNode;
            return;
        }

        Current = Current->next;
        Previous = Previous->next;
    }

    if (Current->next == NULL)
    {
        Current->next = newNode;
        newNode->next = NULL;
    }
}

}

そして最後に、add関数を呼び出して新しいオブジェクトを作成する方法を次に示します。

if (inputArray[0] == "A")
    {
        cout << "Adding Administrator: " << endl <<"\tFull Name:\t" << inputArray[1] << endl;
        cout << "\tM Number:\t" << inputArray[2] << endl << "\tEmail Addr:\t" << inputArray[3] << endl << "\tTitle:\t " << inputArray[4] << endl;
        Administrator *newAdmin = new Administrator;
        istringstream stream (inputArray[2]);
        int number;
        stream >> number;
        newAdmin->setAdmin(inputArray, number);
        templatedList.addTemplatedList(newAdmin);
    }

何が起こっているのか、なぜそれが私にその間違った出力を与えているのかわからないので、私は本当に感謝し、私が得ることができるのを助けたいと思います。

4

1 に答える 1

3

この例でNode::dataは、へのポインタのように見えます。Administratorだからあなたがするとき

cout << Current->data;

ポインタ値を出力するだけです。operator<<クラスに実装したと仮定すると、Administrator必要なのは逆参照だけです。

cout << *Current->data;
于 2013-02-21T02:03:11.353 に答える