繁体   English   中英

为qsort的比较转换结构的指针

[英]casting a pointer to struct for qsort's compare

所以我在c中使用qsort(),我的compare函数通常包括创建一个正确类型的指针并从参数中赋值。 是否可以只从参数中转换指针而不创建新的指针? 如果是的话,我做错了什么?

struct date_t{
    int time;
    int dob;
};

/* the old working function
int cmpfunc (const void * one, const void * two) {
    struct date_t *itemtwo=two;
    struct date_t *itemone=one;
return itemone->time-itemtwo->time;
}
*/

int cmpfunc (const void * one, const void * two) {
    return (struct date_t*)(one)->time - (struct date_t*)two->time;
}

我越来越 :

main.c:17:30: warning: dereferencing 'void *' pointer
  return (struct date_t*)(one)->time - (struct date_t*)two->time;
                          ^~
main.c:17:30: error: request for member 'time' in something not a structure or union

编辑:

我得到它编译

int cmpfunc (struct date_t *one, struct date_t *two) {
    return one->time - two->time;
}

但是,我怎么会用演员阵容呢?

类型转换operator ()优先级低于指向成员的operator- -> 所以这:

(struct date_t*)(one)->time

与此相同:

(struct date_t*)((one)->time)

你需要用括号括起来,然后你可以取消引用指针。

int cmpfunc (const void * one, const void * two) {
    return ((const struct date_t*)(one))->time - ((const struct date_t*)two)->time;
}

另请注意,转换指针是const与原始指针一致。

根据方便的优先级表 ,强制转换操作的优先级低于结构成员访问操作符-> 所以当做(struct date_t*)(one)->time ,首先访问成员time (并且失败,因为onevoid*并且没有这样的成员)。 然后才对结果执行演员表。 相反,您应该通过在适当的位置使用括号来强制优先级,例如:

... ((struct date_t*)one)->time ...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM