1
void sortRecords(char* records[], int size, int isGreater(const char rec1[],
                                                        const char rec2[]));
int isGreaterByName(const char record1[], const char record2[]);

int isGreaterByCity(const char record1[], const char record2[]);

int isGreaterByEmail(const char record1[], const char record2[]);

其实我不知道如何搜索(甚至知道如何调用)..我需要知道如何使用这种类型的功能。

我将这些作为我的函数原型。我需要此功能的示例用法:)

我试过这个

char eMail[30];
sortRecords(addresses,30,isGreaterByName(eMail,eMail));

但是编译器给了我

In function 'main':|
|69|error: passing argument 3 of 'sortRecords' makes pointer from integer without a cast|
|50|note: expected 'int (*)(const char *, const char *)' but argument is of type 'int'|
||=== Build finished: 1 errors, 0 warnings (0 minutes, 0 seconds) ===|

对不起我的英语不好^.^

4

1 回答 1

2

传递函数指针时,省略括号和参数:

sortRecords(addresses, 30, isGreaterByName);

当您包含括号和参数时,编译器会调用该函数并将返回值(通常不是指向函数的指针)传递给需要指向函数的指针的函数,从而导致显示的问题。

您正在使用现代版本的 GCC,它会尽力告诉您出了什么问题:

expected 'int (*)(const char *, const char *)' but argument is of type 'int'

函数的返回值是int; 预期的类型int (*)(const char *, const char *)是您将强制转换写入函数指针的方式。最终,您需要学习该符号。

于 2013-04-29T02:19:27.107 回答