- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
谁能告诉我我做错了什么?如果我注释掉 main 函数中的所有语句,编译器就不会报错。所以,我认为它与 main 函数有关,就在我创建 LinkedStack 的新实例时。
LinkedNode.h
#include<memory>
template<class T>
class LinkedNode
{
friend std::ostream& operator<<(std::ostream& os, const LinkedNode<T>& obj);
public:
LinkedNode(T newElement);
T GetElement() const {return element;}
void SetElement(T val) {element = val;}
LinkedNode<T>* GetNext() const {return next;}
void SetNext(LinkedNode<T>* val) {next = val;}
private:
T element;
LinkedNode<T>* next;
};
template<class T>
LinkedNode<T>::LinkedNode(T newElement)
{
element = newElement;
}
template<class T>
std::ostream& operator<<(std::ostream& os, const LinkedNode<T>& obj)
{
os << obj.element << endl;
return os;
}
LinkedStack.h
#pragma once
#include"LinkedNode.h"
#include<cassert>
template<class T>
class LinkedStack
{
public:
LinkedStack();
int GetSize() const {return size;}
bool IsEmpty() const {return size == 0;}
void Push(T val);
void Pop();
T Peek();
void Clear();
private:
LinkedNode<T>* head;
int size;
};
template<class T>
LinkedStack<T>::LinkedStack():size(0) {}
template<class T>
void LinkedStack<T>::Push(T val)
{
LinkedNode<T>* newOne = new LinkedNode<T>(val);
if(head == 0)
head = newOne;
else
{
newOne->next = head;
head = newOne;
}
size++;
}
template<class T>
void LinkedStack<T>::Pop()
{
assert(!IsEmpty());
LinkedNode<T>* tpHead = head;
head = head->next;
delete tpHead;
size--;
}
template<class T>
T LinkedStack<T>::Peek()
{
assert(!IsEmpty());
return head->element;
}
template<class T>
void LinkedStack<T>::Clear()
{
while(!IsEmpty())
Pop();
}
源.cpp
#include"LinkedStack.h"
#include<iostream>
#include<string>
#include<memory>
int main()
{
LinkedStack<int> stack;
std::cout << "Add" << std::endl;
stack.Push(1);
stack.Push(2);
stack.Push(3);
stack.Push(4);
stack.Push(5);
std::cout << "Top element is: " << stack.Peek();
stack.Pop();
std::cout << "After pop one out, its top element is: " << stack.Peek() << std::endl;
return 0;
}
这是我遇到的所有错误:
Warning 29 warning C4091: 'typedef ' : ignored on left of '_Collvec' when no variable is declared c:\program files (x86)\microsoft visual studio 11.0\vc\include\xlocinfo.h 58
Error 4 error C3857: 'LinkedStack': multiple template parameter lists are not allowed e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 5
Error 3 error C2989: 'LinkedStack' : class template has already been declared as a non-class template e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 20
Error 26 error C2989: 'lconv' : class template has already been declared as a non-class template c:\program files (x86)\microsoft visual studio 11.0\vc\include\locale.h 82
Error 27 error C2989: 'lconv' : class template has already been declared as a non-class template c:\program files (x86)\microsoft visual studio 11.0\vc\include\locale.h 109
Error 5 error C2988: unrecognizable template declaration/definition e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 23
Error 12 error C2988: unrecognizable template declaration/definition e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 40
Error 21 error C2988: unrecognizable template declaration/definition e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 57
Error 9 error C2447: '{' : missing function header (old-style formal list?) e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 27
Error 17 error C2447: '{' : missing function header (old-style formal list?) e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 51
Error 25 error C2447: '{' : missing function header (old-style formal list?) c:\program files (x86)\microsoft visual studio 11.0\vc\include\xstring 13
Error 2 error C2238: unexpected token(s) preceding ';' e:\fall 2013\cpsc 131\test\linkedstack\linkednode.h 6
Error 11 error C2182: 'LinkedStack' : illegal use of type 'void' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 40
Error 19 error C2182: 'LinkedStack' : illegal use of type 'void' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 57
Error 28 error C2143: syntax error : missing ';' before 'identifier' c:\program files (x86)\microsoft visual studio 11.0\vc\include\xlocinfo.h 58
Error 10 error C2143: syntax error : missing ';' before '<' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 40
Error 18 error C2143: syntax error : missing ';' before '<' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 57
Error 8 error C2143: syntax error : missing ';' before '{' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 27
Error 16 error C2143: syntax error : missing ';' before '{' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 51
Error 24 error C2143: syntax error : missing ';' before '{' c:\program files (x86)\microsoft visual studio 11.0\vc\include\xstring 13
Error 20 error C2086: 'int LinkedStack' : redefinition e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 57
Error 1 error C2059: syntax error : '<' e:\fall 2013\cpsc 131\test\linkedstack\linkednode.h 6
Error 6 error C2059: syntax error : '<' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 23
Error 13 error C2059: syntax error : '<' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 40
Error 22 error C2059: syntax error : '<' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 57
Error 7 error C2039: 'Push' : is not a member of '`global namespace'' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 26
Error 14 error C2039: 'Pop' : is not a member of '`global namespace'' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 40
Error 15 error C2039: 'Peek' : is not a member of '`global namespace'' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 50
Error 23 error C2039: 'Clear' : is not a member of '`global namespace'' e:\fall 2013\cpsc 131\test\linkedstack\linkedstack.h 57
Error 30 error C1075: end of file found before the left brace '{' at 'c:\program files (x86)\microsoft visual studio 11.0\vc\include\xlocinfo.h(18)' was matched c:\program files (x86)\microsoft visual studio 11.0\vc\include\xlocinfo.h 58
最佳答案
错误在您的头文件中。注释掉 main
函数时看不到编译器错误的原因是模板的工作方式(它们基本上是创建对象的基础,但实际上直到你试图实例化一个)。
您的 LinkedNode.h 文件中似乎缺少 header 保护。在它的顶部放置一个#pragma once
(或使用#ifndef/#define)。但我不认为这是你错误的原因。
您似乎声明了 LinkedStack
的非模板版本,或者可能在某处具有以下语法(您尚未显示):
template<class T>
template<class N>
class LinkedStack {... }
对于这么小的模板类,我建议将它们内联编写,因为这通常会使您的错误更容易被发现。
关于c++ - 链接堆栈模板和一堆错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19280775/
出于好奇 - 我知道有 LAMP - Linux、Apache、MySQL 和 PHP。但是还有哪些其他 Web 堆栈替代方案的缩写呢?像 LAMR - Linux、Apache、MySQL Ruby
我有以下代码。 var stackMapIn = []; var stackMapOut = []; var stackBack = []; stackMapOut.push("m1"); $scop
我遇到了导致我的堆栈无法恢复的情况,我别无选择,只能将其删除。使用完全相同的模板,我继续创建了另一个同名的堆栈。 The following resource(s) failed to create:
这是我第一次查看 Node 堆栈,自从我学习使用 Ruby on Rails 进行 Web 开发以来,我对一些基本的东西有点困惑。我了解 Rails 目录是什么样的。 demo/ ..../app .
本文实例讲述了C语言使用深度优先搜索算法解决迷宫问题。分享给大家供大家参考,具体如下: 深度优先搜索 伪代码 (Pseudocode)如下: ?
我正在按照指南 here ,它告诉我: The stack setup will download the compiler if necessary in an isolatedlocation (
同时 trying to debug a different question ,我安装了一个似乎与我安装的其他一些软件包冲突的软件包。 我跑了 $ stack install regex-pcre-
我花了几个小时创建了一个方法,该方法将从堆栈 s1 中获取 null 元素,并将它们放入 s2 中。然后该类应该打印堆栈。方法如下 import net.datastructures.ArraySta
我有一个类Floor,它有一个Stack block ,但我不知道如何初始化它。我曾尝试过这样的: public class Floor { private Stack stack;
我知道这个问题已经问过很多次了,但搜索一个小时后我仍然遇到问题。 我想使用一个 lifo 堆栈,它可以存储最大数量的元素。达到最大数量后,首先删除该元素并将其替换为新元素,这样在第一次弹出时我可以获取
我需要编写一个方法,压缩以执行以下操作; 目标compress方法是从栈s1中移除所有null元素。剩余(非空)元素应按其初始顺序保留在 s1 上。辅助堆栈 s2 应用作s1 中元素的临时存储。在该方
我正在尝试验证以下代码发生的顺序。 function square(n) { return n * n; } setTimeout(function(){ console.log("H
我需要一个字符数组,其中包含基于特定文件夹中文件数量的动态数量的字符数组。我能够通过初始化 char (*FullPathNames)[MAX_FILENAME_AND_PATHNAME_LENGTH
我正在编写一些日志逻辑并想要进行一些缩进。了解是否存在任何函数调用或某个函数是否已完成的最简单方法是查看堆栈/帧的当前地址。让我们假设堆栈颠倒增长。然后,如果 log() 调用中的堆栈地址小于前一次调
所以内存分段在x86-64中被放弃了,但是当我们使用汇编时,我们可以在代码中指定.code和.data段/段,并且还有堆栈指针寄存器。 还有堆栈段、数据段和代码段寄存器。 代码/数据/堆栈的划分是如何
void main() { int x = 5; // stack-allocated Console.WriteLine(x); } 我知道 x 是堆栈分配的。但是关于 x 的堆栈中
这是我关于 SO 的第一个问题。这可能是一个愚蠢的问题,但到目前为止我还没弄明白。 考虑下面的程序 Reader.java: public class Reader { public
java中有没有一种快速的方法来获取嵌套/递归级别? 我正在编写一个函数来创建组及其成员的列表。成员也可以是团体。我们最终可能会得到一组循环的组/成员。 我想在某个任意级别停止。 我知道我可以将变量保
考虑以下代码: struct A{...}; A a[100]; A* pa = new A[100]; delete[] pa; a/pa 元素的销毁顺序是由标准定义的还是实现定义的(对于第二种情况
我在下面有一些代码。此代码是一个基本的压入/弹出堆栈类,我将其创建为模板以允许某人压入/弹出堆栈。我有一个家庭作业,我现在要做的是创建一个具有多个值的堆栈。 所以我希望能够创建一个基本上可以发送三个整
我是一名优秀的程序员,十分优秀!