1

C++ でベクトル クラスを再作成しようとしています。

関数 at(); でこのエラーが発生します。

タイプ 'int*' のテンポラリからのタイプ 'int&' の非 const 参照の無効な初期化

関数が参照を返すはずなのに、ポインタをアドレスとして返すことはできませんか?

コードは次のようになります。

template<typename T>
class Vector
{
public:

   explicit Vector(int initSize = 0);
   Vector(const Vector & rhs) throw (std::bad_alloc);
   ~Vector();
   const Vector & operator=(const Vector & rhs) throw (std::bad_alloc);
   void resize(int newSize);
   void reserve(unsigned int newCapacity);
   bool empty() const;
   int size() const;
   int capacity() const;
   T & operator[](int index);
   const T & operator[](int index) const;
   T & at(int index) throw (std::out_of_range);
   void push_back(const T & x) throw (std::bad_alloc);
   T pop_back();
   const T & back() const;
   typedef T * iterator;
   typedef const T * const_iterator;
   iterator insert(iterator it, const T& x) throw (std::bad_alloc);
   iterator begin();
   const_iterator begin() const;
   iterator end();
   const_iterator end() const;

private:
   int theSize;
   unsigned int theCapacity; 
   T * objects; 
};
#include "vector.hpp"
#endif /* VECTOR_HPP_ */

template<typename T>
Vector<T>::Vector(int initSize):theSize
(initSize),theCapacity(128),objects(0)
{

}

typename Vector<T>::iterator Vector<T>::begin()
{
    return objects;
}

template<typename T>
T & Vector<T>::at(int index) throw (std::out_of_range)
{
    //if (index<=theSize)
        return (begin()+index);
}

int main() 
{
        Vector<int>* vec1=new Vector<int>(4);
    cout<<vec1->at(2)<<endl;
        return 0; 
}
4

1 に答える 1

2

begin()+indexはポインター型です。参照にするために逆参照を追加する必要があります。

template<typename T>
T & Vector<T>::at(int index) throw (std::out_of_range)
{
    return *(begin()+index);
}

これは安全ではない可能性があることに注意してください。再割り当ての操作は、関数objectsを通じて取得した参照を無効にするためです。at()

于 2013-09-15T01:28:59.693 に答える