我知道在声明一个数组时我必须用常量值指定它的大小,但是在这种情况下我创建一个const值,它也是一个const表达式,用一个文字值初始化,可以在编译时间,但我在这两种情况下一直有错误:
案例I:
Stack.h
#ifndef STACK_H
#define STACK_H
extern const unsigned MAX;
class Stack {
public:
/* Declarations here ... */
private:
unsigned n;
int stack[MAX];
};
#endif // STACK_H
Stack.cpp
#include <iostream>
#include "Stack.h"
extern const unsigned MAX = 5;
Stack::Stack() {
this->n = 0;
}
int Stack::pop() {
int pop = -1;
if (n > 0) {
pop = this->stack[n - 1];
this->stack[n - 1] = 0;
--n;
} else {
std::cout << "StackUnderFlowException:: Stack Data Structure is Empty!" << std::endl;;
}
return pop;
}
int Stack::getStackTop() {
return this->n > 0 ? this->stack[n - 1] : -1;
}
void Stack::push(int v) {
if (n < MAX) {
this->stack[n] = v;
++n;
} else {
std::cout << "StackOverFlowException:: Stack Data Structure is Full!" << std::endl;
}
}
错误:
In file included from p38.cpp:2:
./Stack.h:18:6: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
int stack[MAX];
^
1 error generated.
In file included from Stack.cpp:2:
./Stack.h:18:6: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
int stack[MAX];
^
在第二种情况下事情变得更加奇怪......
案例II:
Stack.h
#ifndef STACK_H
#define STACK_H
extern const unsigned MAX = 5;
class Stack {
public:
Stack();
int pop();
int getStackTop();
void push(int v);
bool isEmpty();
void printStack(void) const;
private:
unsigned n;
int stack[MAX];
};
#endif // STACK_H
Stack.cpp
#include <iostream>
#include "Stack.h"
using namespace std;
Stack::Stack() {
this->n = 0;
}
/ *此处有更多代码...... * /
错误:
duplicate symbol _MAX in:
/var/folders/r3/zbrrqh7n5tg0vcnpr9_7j0nr0000gn/T/p38-ac46b9.o
/var/folders/r3/zbrrqh7n5tg0vcnpr9_7j0nr0000gn/T/Stack-a5d98e.o
ld: 1 duplicate symbol for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我只是通过删除extern关键字来修复CASE II,并且我在标题中使用#define MAX 5而不是使用某个常量变量来修复我的问题,事情甚至很难我已经解决了我想要的问题我对C ++有了更好的理解,我想知道这些错误的原因,因为我没有很好地理解它。有人可以给我一个解释吗?提前谢谢!
答案 0 :(得分:1)
编译时常量和运行时常量之间存在差异。
extern const unsigned MAX;
声明运行时常量,而不是编译时常量。它可以在运行时初始化为5,10,20或其他任何东西。初始化后,其值保持不变。
由于它不是编译时常量,因此不能用作数组的大小。
要将其用作编译时常量,请使用:
const unsigned MAX = 5;
<。>文件中的。
extern const unsigned MAX = 5;
不起作用,因为它不仅声明了变量,而且还定义了变量。 {。}} .h文件最终定义变量的任何.c文件,解释重复符号链接器错误。
答案 1 :(得分:0)
int stack [MAX];
你的错误就在这里你必须强制指定大小。 例如int stack [20];