0

我想避免std::pair()std::make_pair()插入map. 我也想知道插入操作的成功状态,所以不能用operator[]. 我尝试了以下代码,但它产生了编译错误。

template<typename TKey, typename TVal>
class Map
{
   private :
      std::map<TKey, TVal> m_holder;

   public :
      bool insert(TKey key, TVal val)
      {
         std::pair<std::map<TKey, TVal>::iterator, bool> ret;
         /* ret = m_holder.insert(std::make_pair(key, val)); */
         return 0;
      }
};

int main()
{
   return 0;
}

错误 :

Hello.cpp: In member function `bool Map<TKey, TVal>::insert(TKey, TVal)':
Hello.cpp:13: error: type/value mismatch at argument 1 in template parameter list for `template<class _T1, class _T2> struct std::pair'
Hello.cpp:13: error:   expected a type, got ` std::map<TKey,TVal,std::less<_Key>,std::allocator<std::pair<const _Key, _Tp> > >::iterator'
Hello.cpp:13: error: invalid type in declaration before ';' token

帮我解决问题。

4

1 回答 1

1
std::pair<typename std::map<TKey, TVal>::iterator, bool> ret;
//        ~~~~~~~^
于 2014-10-01T13:19:24.777 回答