这是一个非常业余的问题,我确信这将是一个非常简单的答案,但我似乎无法弄清楚问题。我有一个带有相应.cpp文件的头文件,但出于某种原因,每当我尝试用g ++编译时,我都会收到错误:
声明不会声明任何内容
我很确定问题是我没有初始化文件中的(唯一)变量,但我不确定要将它初始化为什么。如果有人可以提供帮助,我将不胜感激!这是我的文件:
SymbolTableDictionary.h
#ifndef SymbolTable
#define SymbolTable
#include <new>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string>
using namespace std;
#pragma once
struct Symbol
{
std::string Name;
int Address;
Symbol::Symbol()
{ }
Symbol::Symbol(const string name, int address)
{
std::string sym(name);
this->Name = sym;
this->Address = address;
}
};
extern map<std::string, Symbol> SymbolTable;
#endif
SymbolTableDictionary.cpp
#include <new>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <map>
#include "SymbolTableDictionary.h"
using namespace std;
map<std::string, Symbol> SymbolTable;
编译错误:
In file included from SymbolTableDictionary.cpp:8:0:
SymbolTableDictionary.h:18:5: error: extra qualification ‘Symbol::’ on member ‘Symbol’ [-fpermissive]
SymbolTableDictionary.h:21:5: error: extra qualification ‘Symbol::’ on member ‘Symbol’ [-fpermissive]
SymbolTableDictionary.h:29:8: error: declaration does not declare anything [-fpermissive]
SymbolTableDictionary.cpp:12:1: error: declaration does not declare anything [-fpermissive]
答案 0 :(得分:9)
问题是这段代码:
// header
#ifndef SymbolTable
#define SymbolTable
// implementation
map<std::string, Symbol> SymbolTable;
你#define SymbolTable
要清空。因此建议
始终将ALL_UPPERCASE_NAMES用于宏(也适用于包含警卫)
仅对宏使用宏名称。
答案 1 :(得分:3)
地图SymbolTable
的名称与包含保护
#ifndef SymbolTable
#define SymbolTable
因为这个宏是空的,你的声明看起来像这个
map<std::string, Symbol> ; //note: no name
解决方案是使用更加难看的宏名称来包含guard,例如:
#ifndef SYMBOL_TABLE_H
#define SYMBOL_TABLE_H
答案 2 :(得分:3)
而不是
#infndef SymbolTable
#define SymbolTable
..
#endif
你可以使用
#pragma once
据我所知,他们做同样的事情。但是你不必处理与其他名称相同的名称。