を使用man -wK 'sizeof' | sort -u
してを含む記事を見つけることができますがsizeof
、これにより多くの結果が返されます。ただし、何かに関するすべての記事には、スペースで囲まれた裸語としてそのものが含まれることに注意してください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
とおり、は演算子ではなく、演算子であり、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