如何推断自动指针指向的类型?

时间:2014-05-17 12:30:23

标签: c++ c++11

在以下代码段中,我使用auto获取A.shape()的输出,实际返回std::size_t*。然后我想创建一个相同底层数据类型的数组,即std::size_t。在这种情况下,我努力弄清楚如何使用decltype()。以下不起作用:

#include "boost/multi_array.hpp"

int main() {
    boost::multi_array<double, 3> A(boost::extents[5][4][2]);
    auto dims = A.shape();
    boost::array<decltype(*dims), 3> dims3;    // does not compile
}

但是,如果我创建了一个中间变量auto d0 = *dims;,则decltype(d0)的使用成功:

#include "boost/multi_array.hpp"

int main() {
    boost::multi_array<double, 3> A(boost::extents[5][4][2]);
    auto dims = A.shape();
    auto d0 = *dims;
    boost::array<decltype(d0), 3> dims3;    // this works
}

有没有更好的方法让这项工作?优选地,不必产生中间变量α

1 个答案:

答案 0 :(得分:4)

在取消引用运算符上使用decltype()时删除引用:

using type = typename std::remove_reference<decltype(*(A.shape()))>::type;

这是因为解引用运算符返回对迭代器指向的底层元素的左值引用(能够对其进行读写)。