3

我想要一个与维度无关的模板(对 3d 和 4d 都有用),大多数操作将在第一维剥离的子矩阵上执行。

所以这就是我想要的

template <typename element, int dimensions>
class MMapMatrixTemplate{
public:
    typedef boost::multi_array_ref<element, dimensions> array_type; 
    typedef std::array<size_t, dimensions> index_type;
    typedef array_type::array_view<dimensions-1>::type stride_type;
};

wherearray_type定义了由此类管理的数组index_type定义了用于索引数组的类型,我想`stride_type定义该数组的一个具有较少维度的切片。

现在我得到一个错误:

  include/MMapMatrix.hh:31:55: error: non-template ‘array_view’ used as template
   typedef boost::multi_array_ref<element, dimensions>::array_view<dimensions-1>::type stride_type;
                                                   ^
4

2 回答 2

4

您需要typename和/或.template限定从属姓名:

typedef typename array_type::array_view<dimensions-1>::type stride_type;

如果您在依赖名称上使用模板成员,则需要.template限定:

obj.template foo<T>();

请参阅这个非常流行的背景答案

我必须在哪里以及为什么要放置“模板”和“类型名称”关键字?

于 2014-02-27T10:13:02.220 回答
4

从有关视图的文档中,您可以看到视图类型的定义为:

  typedef typename Array::template array_view<3>::type view1_t;

所以这会使你的代码编译:

#include "boost/multi_array.hpp"

template <typename element, int dimensions>
class MMapMatrixTemplate{
public:

    typedef boost::multi_array_ref<element, dimensions> array_type; 

    typedef std::array<size_t, dimensions> index_type;

    //typedef array_type::array_view<dimensions-1>::type stride_type;
    typedef typename array_type::template array_view<dimensions-1>::type stride_type;
};

int main(int argc, const char *argv[])
{

    typedef MMapMatrixTemplate<double, 4> matrix;

    return 0;
}

您需要指定它array_view实际上是一个类模板才能这样使用它。否则,编译器期望它是完全定义的类型。

于 2014-02-27T10:15:20.083 回答