我有這樣的結構:通過函數數組指針循環
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);
}
作爲快速解釋,這個代碼採取的「中間碼」的文件時,確定該指令,並且對於每個保持適當的函數指針創建的指令結構。
運行代碼給了我這個運行時錯誤:
"Unhandled exception at 0x00000000 in Interpreter.exe: 0xC0000005: Access violation." (Compiled using VS 2010).
看起來你的函數指針之一是NULL指針。 – FatalError 2012-07-09 02:55:57
這確實在哪一行中崩潰? – alk 2012-07-09 08:13:57