3

成员定义为

std::shared_ptr<std::array<std::string, 6> > exit_to;

这指向其他共享的其他数据。当尝试启动指针“exit_to”时。正确的方法是

node_knot.exit_to = std::make_shared<std::array<std::string, 6> >();

但它在另一个文件中,我想保持指针类型一致,如下所示:

node_knot.exit_to = std::make_shared<decltype(*node_knot.exit_to)>();

但不会编译:

 /usr/include/c++/4.6/bits/shared_ptr_base.h:798:54: error: '__p'
 declared as a pointer to a reference of type
 'std::array<std::basic_string<char>, 6> &'
         __shared_ptr(const __shared_ptr<_Tp1, _Lp>& __r, _Tp* __p)
                                                             ^ /usr/include/c++/4.6/bits/shared_ptr.h:93:31: note: in instantiation
 of template class
 'std::__shared_ptr<std::array<std::basic_string<char>, 6> &, 1>'
 requested here
     class shared_ptr : public __shared_ptr<_Tp>
                               ^ ../node_booker.h:757:20: note: in
 instantiation of template class
 'std::shared_ptr<std::array<std::basic_string<char>, 6> &>' requested
 here
                                                         n.exit_to = std::make_shared<decltype(*n.exit_to)>();

我在 Ubuntu 12.10、clang++ 3.2 下,使用 --std=c++11

4

2 回答 2

6

您需要从要传递给的类型中删除引用make_shared。以下应该有效:

node_knot.exit_to = std::make_shared<std::remove_reference<decltype(*node_knot.exit_to)>::type>();
于 2013-03-20T19:06:48.520 回答
4

问题是 of 的类型*exit_to是一个引用,而你不能有一个shared_ptrto 的引用。

您可以删除引用,但与其查找返回的类型operator*然后将其剥离,不如询问shared_ptr它包含的类型可能更容易:

node_knot.exit_to = std::make_shared<decltype(node_knot.exit_to)::element_type>();

嵌套element_type是存储的类型shared_ptr

另一种选择是将 a 添加typedef到类中,并在需要的任何地方始终如一地使用它:

typedef std::array<std::string, 6> string_array;
std::shared_ptr<string_array> exit_to;

// ... 

node_knot.exit_to = std::make_shared<Node::string_array>();

这比使用更具可读性decltype

于 2013-03-20T19:11:31.157 回答