我想要一个作为 mpfr_t 元素矩阵的类。我认为 STL Vectors 将是一个好主意,可以根据需要动态分配任意数量的这些,但我在这里遇到了一些错误。
#ifndef GMPMATRIX_H
#define GMPMATRIX_H
#include <vector>
#include <mpfr.h>
typedef std::vector<mpfr_t> mpVector;
typedef std::vector<mpVector> mpMatrix;
class GmpMatrix
{
private:
int n;
int m;
mpMatrix elements;
public:
GmpMatrix() {}
GmpMatrix(int n, int m)
{
this->n = n;
this->m = m;
for (int i = 0; i < n; ++i)
{
mpVector e_push(m);
for (int j = 0; j < m; ++j)
{
mpfr_t e;
mpfr_init(e);
e_push.push_back(e);
}
}
}
~GmpMatrix() {}
};
#endif // GMPMATRIX_H
错误是:
/usr/include/c++/5/ext/new_allocator.h:120:4: error: parenthesized initializer in array new [-fpermissive]
{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
^
/usr/include/c++/5/ext/new_allocator.h:120:4: error: no matching function for call to ‘__mpfr_struct::__mpfr_struct(const __mpfr_struct [1])’
我真的研究过这个,我无法弄清楚。有没有办法制作vector< vector<mpfr_t> >
作品?有谁知道发生了什么?