Gcc
在 man 中搜尋 __builtin_popcount
想搜尋該
__builtin_popcount
功能的手冊頁。我輸入
$ man __builtin
並點擊TAB
,它變成了$man ./__builtin/
. 為什麼會這樣?然後,我輸入*_popcount*並點擊
return
,但找不到手冊頁。然後我如何搜尋__builtin_*
功能?
您可以使用該
apropos
命令在已安裝的手冊頁中搜尋關鍵字:$ apropos builtin bash-builtins (7) - bash built-in commands, see bash(1) builtins (7) - bash built-in commands, see bash(1) $ apropos __builtin_popcount __builtin_popcount: nothing appropriate. $
看起來沒有此 GCC 擴展的手冊頁。我認為您必須改用線上文件:
— 內置函式:int __builtin_popcount (unsigned int x)
返回 x 中 1 的位數。