所以,从 Linked List 开始,我现在必须构建一个 Linked Stack,我认为它与它非常相似。但是,我收到一个访问错误,说无法访问私有成员。我知道它与唯一指针内的构造函数有关,您无法复制指针。其中一个人告诉我做一个构造函数的深拷贝,但我不知道怎么做。有人能告诉我怎么做吗?谢谢你。
PS:我知道这个是我今天早些时候发布的。但是我还没有自己的答案,而且似乎也没有人回答我,所以我决定重新发布它。如果您认为这是转发,请随时删除它。
链接节点.h
#include <iostream>
#include <memory>
using namespace std;
template <class T>
class LinkedNode
{
public:
// This is giving me error and I do not know how to recreate
// or deep-copy the constructor
LinkedNode(T newElement, unique_ptr<LinkedNode<T>> newNext)
{
element = newElement;
next = newNext
}
T GetElement() {return element;}
void SetElement(T x) {element = x;}
unique_ptr<LinkedNode<T>> newNext() {return next;}
void SetNext(unique_ptr<LinkedNode<T>> newNext) {next = newNext;}
private:
T element;
unique_ptr<LinkedNode<T>> next;
};
CompactStack.h
#pragma once
#include"LinkedNode.h"
using namespace std;
template <class T>
class CompactStack
{
public:
CompactStack() {}
bool IsEmpty() const { return head == 0; }
T Peek()
{
assert(!IsEmpty());
return head-> GetElement();
}
void Push(T x)
{
unique_ptr<LinkedNode<T>> newhead(new LinkedNode<T>(x, head));
head.swap(newhead);
}
void Pop()
{
assert(!IsEmpty());
unique_ptr<LinkedNode<T>> oldhead = head;
head = head->next();
}
void Clear()
{
while (!IsEmpty())
Pop();
}
private:
unique_ptr<LinkedNode<T>> head;
};
这是我从编译器得到的错误
Error 1 error C2248: 'std::unique_ptr<_Ty>::unique_ptr' : cannot access private member declared in class 'std::unique_ptr<_Ty>' e:\fall 2013\cpsc 131\hw4\hw4\hw4\compactstack.h 23