คุณสามารถใช้man -wK 'sizeof' | sort -u
เพื่อค้นหาบทความที่มีsizeof
แต่จะให้ผลลัพธ์จำนวนมาก แต่สังเกตเห็นว่าบทความเกี่ยวกับสิ่งที่ทุกคนจะมีอีกสิ่งหนึ่งที่เป็น bareword zgrep -P '\ssizeof\s' /usr/share/man/man3/*
ที่ล้อมรอบด้วยพื้นที่เราจะค้นหาบทความเช่นนี้ แต่การค้นหาในส่วนที่ 3 ไม่ได้ให้ข้อมูลที่เป็นประโยชน์ดังนั้นฉันจะค้นหาในส่วนที่ 7
$ zgrep -P '\ssizeof\s' /usr/share/man/man7/*
/usr/share/man/man7/inotify.7.gz: len = read(fd, buf, sizeof buf);
/usr/share/man/man7/operator.7.gz:! ~ ++ \-\- + \- (type) * & sizeof right to left
อย่างที่คุณเห็น, sizeof
ถูกกล่าวถึงในหน้า man operator, เพราะมันไม่ใช่ฟังก์ชั่น แต่เป็น operatorและมันทำงานได้แม้ไม่มีวงเล็บสำหรับตัวระบุเช่นsizeof buf
ด้านบน
OPERATOR(7) Linux Programmer's Manual OPERATOR(7)
NAME top
operator - C operator precedence and order of evaluation
DESCRIPTION top
This manual page lists C operators and their precedence in
evaluation.
Operator Associativity
() [] -> . left to right
! ~ ++ -- + - (type) * & sizeof right to left
* / % left to right
+ - left to right
<< >> left to right
< <= > >= left to right
== != left to right
& left to right
^ left to right
| left to right
&& left to right
|| left to right
?: right to left
= += -= *= /= %= <<= >>= &= ^= |= right to left
, left to right
http://man7.org/linux/man-pages/man7/operator.7.html