'std :: vector <T>:: iterator it;' не компилируется - PullRequest
16 голосов
/ 30 июня 2010

У меня есть эта функция:

    template<typename T>
    void Inventory::insertItem(std::vector<T>& v, const T& x)
    {
        std::vector<T>::iterator it; // doesn't compile
        for(it=v.begin(); it<v.end(); ++it)
        {
            if(x <= *it) // if the insertee is alphabetically less than this index
            {
                v.insert(it, x);
            }
        }
    }

и g ++ выдает следующие ошибки:

src/Item.hpp: In member function ‘void
yarl::item::Inventory::insertItem(std::vector<T, std::allocator<_CharT> >&, const T&)’:  
src/Item.hpp:186: error: expected ‘;’ before ‘it’  
src/Item.hpp:187: error: ‘it’ was not declared in this scope

это должно быть что-то простое, но после десяти минут наблюдения я могуне найти ничего плохого.Кто-нибудь еще видел это?

Ответы [ 2 ]

31 голосов
/ 30 июня 2010

Попробуйте вместо этого:

typename std::vector<T>::iterator it;

Вот страница, которая описывает как использовать typename и почему это необходимо.

8 голосов
/ 30 июня 2010

То, что вы делаете, неэффективно.Вместо этого используйте бинарный поиск:

#include <algorithm>

template <typename T>
void insertItem(std::vector<T>& v, const T& x)
{
    v.insert(std::upper_bound(v.begin(), v.end(), x), x);
}
...