我有这个结构:
typedef struct {
void (*func)(instruction);
union {
double db;
char ch;
};
} instruction;
在我的源文件中,我有一组这些指令。我的问题是,我将如何遍历该数组并执行每个结构的函数?
我以为我知道该怎么做,但是指令函数有一个指令参数这一事实似乎会导致问题。因此,这不起作用:
int i;
for (i = 0; i <= instr_count; i++) {
(*instr[i].func) (instr[i]);
}
instr 是指令数组。
这是填充数组的函数。数组本身在文件顶部声明。
void read_instructions()
{
char* str;
char *instruct;
int n;
char c;
instruction next = {0};
while (!feof(datafile)) {
// Fetch the next string
// if (push or pop), get the next argument
// create instructiwn and add to instruction array
str = get_next_string();
instruct = strtok (str, " ");
if (strncmp (instruct, "P", 1) == 0) {
char *arg = strtok (NULL, " ");
if (strncmp (str, "PUSH", 4) == 0) {
next.func = pushFunc;
}
else {
next.func = popFunc;
}
n = arg[0];
if (n > 64 || n < 71)
next.ch = n;
else {
double n;
scanf ("%lf", arg, n);
next.db = n;
}
instr[instr_count] = next;
instr_count++;
}
else {
c = instruct[0];
switch (c) {
case 'A' :
next.func = addFunc;
break;
case 'S' :
next.func = subFunc;
break;
case 'M' :
next.func = multFunc;
break;
case 'D' :
next.func = divFunc;
break;
default :
break;
}
instr[instr_count] = next;
instr_count++;
}
}
fclose (datafile);
}
作为快速解释,此代码获取一个“中间代码”文件,确定指令,并为每个包含正确函数指针的指令结构创建一个指令结构。
运行代码会给我这个运行时错误:
“Interpreter.exe 中 0x00000000 处未处理的异常:0xC0000005:访问冲突。” (使用 VS 2010 编译)。