错误:在}令牌之前的预期声明(当试图编译时)

时间:2014-03-03 07:41:41

标签: c++ stack

我遇到了问题。我有文件 stack.h stack.hpp 中的堆栈模板和实现。然后我有一个 in2out.cpp 文件,它将中缀表达式转换为外部表达式并对它们进行评估。在in2out.cpp的开头我“#include stack.h”。在 stack.h(这是我的界面)中我“#include stack.hpp”(stack.hpp是我的实现)。我知道这很奇怪,但这是我要求的方式。

无论如何,我的问题是,当我试图将这3个文件一起编译时。我在stack.h中只得到1个错误(我的界面,如下所示)。错误是:

In file included from in2post.cpp:7:
stack.h:49: error: expected declaration before â}â token

第49行靠近底部。这是我的stack.h文件。

#ifndef STACK_H
#define STACK_H

#include <iostream>
#include <vector>


namespace cop4530 {

template<typename T>
class Stack {

 private:
 std::vector<T> v;

 public:
 Stack();
 ~Stack();
 Stack (const Stack<T>&);
 //Stack (Stack<T>&& );
 Stack<T>& operator= (const Stack <T>&);
 //Stack<T> & operator=(Stack<T> &&);
 bool empty() const;
 void clear();
 void push(const T& x);
 //void push(T && x);
 void pop();
 T& top();
 const T& top() const;
 int size() const;
 void print(std::ostream& os, char ofc = ' ') const;

};

template<typename T>
std::ostream& operator<< (std::ostream& os, const Stack<T>& a);

template<typename T>
bool operator== (const Stack<T>& a, const Stack <T>& b);

template<typename T>
bool operator!= (const Stack<T>& a, const Stack <T>& b);

template<typename T>
bool operator< (const Stack<T>& a, const Stack <T>& b);

#include "stack.hpp"

}    //this is line 49

#endif

这是我的makefile:

CC = g++
FLAGS = -Wall -pedantic
DDD = -g

in2post.x: in2post.cpp stack.h stack.hpp
    $(CC) $(FLAGS) $(DDD) -o in2post.x in2post.cpp

编辑:这是Stack.hpp的开头:(告诉我是否应该更改或添加内容) EDIT2:我刚决定包含整个Stack.hpp。有些功能被淘汰,因为我不需要它们或者无法解决它们

#include <iostream>
#include <vector>

template<typename T>
Stack<T>::Stack(){}

template<typename T>
Stack<T>::~Stack(){
   v.clear();
}

template<typename T>
Stack<T>::Stack(const Stack<T> & S){
    v = S.v;
}
/*
template<typename T>
Stack<T>::Stack(Stack<T> &&){

}
*/
template<typename T>
Stack<T> & Stack<T>::operator=(const Stack<T> & S){
    v = S.v;
    return *this;
}
/*
template<typename T>
Stack<T>::Stack<T> & Stack<T>::operator=(Stack<T> &&){

}
*/
template<typename T>
bool Stack<T>::empty() const {
    return v.empty();
}

template<typename T>
void Stack<T>::clear(){
    while (!v.empty())
        v.clear();
}

template<typename T>
void Stack<T>::push(const T& x){
    v.push_back(x);
}
/*
template<typename T>
void Stack<T>::push(T && x){

}
*/
template<typename T>
void Stack<T>::pop(){
    v.pop_back();
}

template<typename T>
T& Stack<T>::top(){
    return v[v.size()-1];
}

template<typename T>
const T & Stack<T>::top() const{
    return v[0];
}

template<typename T>
int Stack<T>::size() const {
    return v.size();
}

template<typename T>
void Stack<T>::print(std::ostream & os, char ofc) const {
    for(int i = 0; i < v.size(); i++)
    os << v[i] << ofc;
}

/*------------------NON-MEMBER GLOBAL FUNCTIONS-----------------*/

template<typename T>
std::ostream & operator<<(std::ostream & os, const Stack<T> & a) {
    a.print(os);
    return os;
}


template <typename T>
bool operator==(const Stack<T> & a, const Stack<T> & b) {
    if(a.size() != b.size())
            return false;
    else {
        Stack<T> c = a;
        Stack<T> d = b;
        bool retVal = true;

        while(!c.empty()) {
            if(c.top() == d.top()) {
             c.pop();
             d.pop();
            }
            else {
             retVal = false;
             break;
            }
        }
    return retVal;
    }
}


template <typename T>
bool operator!=(const Stack<T> & a, const Stack<T> & b) {
    return !(a == b);
}

template <typename T>
bool operator<(const Stack<T> & a, const Stack<T> & b) {
    Stack<T> c = a;
    Stack<T> d = b;
    bool retVal = true;

    while(!c.empty()) {
        if(!(c.top() < d.top())) {
          retVal = false;
          break;
        }
        else {
          c.pop();
          d.pop();
        }
    }
    return retVal;
}

1 个答案:

答案 0 :(得分:0)

您在stack.hpp中的operator<有一个额外的结束大括号,它会提前关闭命名空间。