启动错误,通过构建以下代码来显示该错误:Testfile.cpp:27:41: error: variable ‘boost::numeric::ublas::matrix_column<boost::numeric::ublas::bounded_matrix<double, 2u, 2u> > op1’ has initialiser but incomplete type.
请考虑以下代码:
//! System includes
#include <iostream>
#include <fstream>
//! Boost includes
#include <boost/lexical_cast.hpp>
#include <boost/integer/static_min_max.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/array.hpp>
int main( )
{
namespace ublas = boost::numeric::ublas;
typedef ublas::bounded_matrix<double,2,2> MatDofDdim;
typedef ublas::bounded_vector<double,2> VecDof;
MatDofDdim op;
for(int i=0;i<2;i++){
for(int j=0;j<2;j++){
op(i,j)=i+j;
}
}
//VecDof op1;
ublas::matrix_column<MatDofDdim> op1 ( op, 1 ) ;
//VecDof op1( ublas::matrix_column<MatDofDdim>( op, 1 ));
return 0;
}
我还尝试了另一种方法,在
"ublas::matrix_column<MatDofDdim> op1 ( op, 1 ) ;"
行中添加了注释,在前一行和后一行中取消了注释。然后它说:
Testfile.cpp:29:48: error: redeclaration of ‘VecDof op1’Testfile.cpp:26:9: error: ‘VecDof op1’ previously declared hereTestfile.cpp:29:54: error: invalid use of incomplete type ‘struct boost::numeric::ublas::matrix_column<boost::numeric::ublas::bounded_matrix<double, 2u, 2u> >’/usr/include/boost/numeric/ublas/fwd.hpp:75:11: error: declaration of ‘struct boost::numeric::ublas::matrix_column<boost::numeric::ublas::bounded_matrix<double, 2u, 2u> >’
我在
ubuntu
和g++
中使用eclipse。 最佳答案
matrix_column
在<boost/numeric/ublas/matrix_proxy.hpp>
中声明
http://www.boost.org/doc/libs/1_51_0/libs/numeric/ublas/doc/matrix_proxy.htm#matrix_column
关于c++ - 变量类型不完整的编译器错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12410860/