0

boost::ptr_vector のコンテナ クラスを作成しようとしていますが、イテレータを動作させるのに少し苦労しています..

これは、実装しようとしているメンバー関数の1つです。

//data is of type boost::ptr_vector<T>
//Date is a custom date class that i made with > operator overloaded

template <class T>
void P_VContainer<T>::addElementByDate(T* item)
{
    boost::ptr_vector<T>::iterator it;

    for(it = data.begin(); it < data.end(); it++)
    {
        T temp = *it;
        Date = *lhs = item->getDate();
        Date = *rhs = item.getDate();

        if(*lhs > *rhs)
        {
            data.insert(it, item);
            return;
        }
    }
    data.insert(it, item);
}

私が得ているエラーは次のとおりです。

p_vcontainer.cpp: In member function ‘void P_VContainer<T>::addElementByDate(T*)’:
p_vcontainer.cpp:52:2: error: need ‘typename’ before ‘boost::ptr_vector<T>::iterator’ because ‘boost::ptr_vector<T>’ is a dependent scope
p_vcontainer.cpp:52:33: error: expected ‘;’ before ‘it’
p_vcontainer.cpp:54:7: error: ‘it’ was not declared in this scope

これを修正する方法のアイデアはありますか?

4

1 に答える 1

1

船長 救助に明らかに!

「boost::ptr_vector::iterator」の前に「typename」が必要</p>

書きますtypename boost::ptr_vector<T>::iterator it;

于 2013-10-19T10:16:11.317 に答える