无法访问私有成员 - 模板和 std::unique_ptr
Unable to access private member - template and std::unique_ptr
我有以下代码:
#include <memory>
template<typename T, size_t Level>
class Foo
{
friend class Foo<T, Level + 1>;
typedef std::unique_ptr<T> ElmPtr;
typedef std::unique_ptr<Foo<ElmPtr, Level - 1>> NodePtr;
public:
Foo() {
// no errors
auto c = children;
}
Foo(int n) {
// !!! compiler error !!!
auto c = children;
}
std::array<NodePtr, 4> children;
};
template<typename T>
class Foo<T, 0>
{
friend class Foo<T, 1>;
public:
Foo() {}
};
int main()
{
Foo<int, 1> foo1;
}
我收到以下错误:
error C2248: 'std::unique_ptr<_Ty>::unique_ptr' : cannot access
private member declared in class 'std::unique_ptr<_Ty>'
为什么?我该如何解决这个问题?
你有:
auto c = children;
其中:
std::array<std::unique_ptr<T>, N> children;
那将需要复制 unique_ptr
s,而 unique_ptr
是不可复制的。不过,您可以参考 children
:
auto& c = children; // OK
我有以下代码:
#include <memory>
template<typename T, size_t Level>
class Foo
{
friend class Foo<T, Level + 1>;
typedef std::unique_ptr<T> ElmPtr;
typedef std::unique_ptr<Foo<ElmPtr, Level - 1>> NodePtr;
public:
Foo() {
// no errors
auto c = children;
}
Foo(int n) {
// !!! compiler error !!!
auto c = children;
}
std::array<NodePtr, 4> children;
};
template<typename T>
class Foo<T, 0>
{
friend class Foo<T, 1>;
public:
Foo() {}
};
int main()
{
Foo<int, 1> foo1;
}
我收到以下错误:
error C2248: 'std::unique_ptr<_Ty>::unique_ptr' : cannot access private member declared in class 'std::unique_ptr<_Ty>'
为什么?我该如何解决这个问题?
你有:
auto c = children;
其中:
std::array<std::unique_ptr<T>, N> children;
那将需要复制 unique_ptr
s,而 unique_ptr
是不可复制的。不过,您可以参考 children
:
auto& c = children; // OK