Linux kernel's list.h提供了许多宏,用于在自己的链表实现上迭代。例如:

/**
 * list_for_each    -   iterate over a list
 * @pos:    the &struct list_head to use as a loop cursor.
 * @head:   the head for your list.
 */
#define list_for_each(pos, head) \
    for (pos = (head)->next; pos != (head); pos = pos->next)

试图缩写的pos参数的名称是什么?(什么意思?)

最佳答案

它缩写为“位置”,它显示当前光标位置。

关于c - pos在Linux内核的list.h中是什么意思,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39273450/

10-14 11:04