矩阵运算,构造函数问题

时间:2011-04-25 21:38:26

标签: c++ constructor matrix

我想提出另一个关于矩阵运算的问题......

template <typename T>
struct TMatrix
{
    typedef std::vector < std::vector <T> > Type;
};


template <typename T>
class Matrix
{
    private:
            typename TMatrix <T>::Type items;       
            const unsigned int rows_count;          
            const unsigned int columns_count;   

    public:
             template <typename U>
             //Error, see bellow please
             Matrix ( const Matrix <U> &M ): 
                  rows_count ( M.getRowsCount() ), columns_count ( M.getColumnsCount() ), items ( M.getItems()){} 
             unsigned int getRowsCount() const {return rows_count;}
             unsigned int getColumnsCount() const {return columns_count;}
             typename TMatrix <T>::Type const & getItems () const {return items;}
             typename TMatrix <T>::Type & getItems ()  {return items;}  

编译代码,编译器停在这里:

Matrix ( const Matrix <U> &M ):  
      rows_count ( M.getRowsCount() ), columns_count ( M.getColumnsCount() ), items ( M.getItems()){}  //Error

并显示以下错误:

Error   79  error C2664: 'std::vector<_Ty>::vector(const std::allocator<_Ty> &)' : cannot convert parameter 1 from 'const std::vector<_Ty>' to 'const std::allocator<_Ty> &'

但我不知道,为什么......再次感谢你的帮助...

更新了问题:

编译代码

template <class T>
template <typename U>
Matrix <T> :: Matrix ( const Matrix <U> &M )
: rows_count ( M.getRowsCount() ), columns_count ( M.getColumnsCount() ), items ( M.getItems().begin(), M.getItems().end()){}

具有以下结果:

Error   132 error C2664: 'std::vector<_Ty>::vector(const std::allocator<_Ty> &)' : 
cannot convert parameter 1 from 'const std::vector<_Ty>' to 'const std::allocator<_Ty> &'
c:\program files\microsoft visual studio 10.0\vc\include\xmemory    208

2 个答案:

答案 0 :(得分:2)

您的模板化构造函数Matrix<T>::Matrix<U>(const Matrix<U> &M)旨在构建Matrix<T>给定Matrix<U>。它通过在初始化列表中调用构造函数vector<vector<T>>(vector<vector<U>>)来完成此操作。

问题是std::vector不提供混合类型构造函数。

我不知道如何在初始化列表中解决这个问题。您可以在构造函数的主体中执行此操作。以下是对您的公共接口的更新,以允许此操作:

Matrix() : rows_count(), columns_count(), items() {}
template <typename U>
Matrix ( const Matrix <U> M ):
    rows_count ( M.getRowsCount() ), columns_count ( M.getColumnsCount() ), items ( ) {
    for(int i = 0; i < M.getItems().size(); i++) {
        items.push_back(std::vector<T>(M.getItems()[i].begin(),M.getItems()[i].end()));
    }
}

答案 1 :(得分:0)

您忘记了顶部的#include <vector>和文件末尾的};。当我将这些添加到代码中时,它在我的计算机上编译得很好。