gpt4 book ai didi

c - 函数指针作为qsort函数的参数

转载 作者:太空宇宙 更新时间:2023-11-04 02:45:11 25 4
gpt4 key购买 nike

在 c 语言的 qsort 函数中有一个 functin 指针指向比较函数,它实际上对给定数组的数据进行排序。

所以在那个函数里面我看到了:

if ( *(MyType*)a <  *(MyType*)b ) return -1;

好吧,我知道一个遗嘱被转换到 MyType* 但那之后最左边的星星呢?它在做什么?

好吧,我想这只是取消对指针 a 的引用?

谢谢。

/我

最佳答案

Well i understand a will casted to MyType* but what about the star after that on the very left? what is it doing?

所以你知道 a 是一个指针,指针保存一些有效的内存位置,存储在该内存位置的值是通过使用 * 运算符获取的,该运算符称为取消引用 a指针

关于c - 函数指针作为qsort函数的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28191285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com