使用 cout 列印函數指標
在 C 中,直接使用 cout 列印函數指標可能會出現問題。相反,建議在列印之前將函數指標轉換為 void*。下面的程式碼片段示範了這一點:
#include <iostream> using namespace std; int foo() {return 0;} int main() { int (*pf)(); pf = foo; cout << "cout << pf is " << pf << endl; cout << "cout << (void *)pf is " << (void *)pf << endl; printf("printf(\"%p\", pf) is %p\n", pf); return 0; }
輸出:
cout << pf is 1 cout << (void *)pf is 0x100000b0c printf("%p", pf) is 0x100000b0c
如上所示,cout 將函數指標隱式轉換為 bool,從而產生輸出 1。函數的實際位址,必須轉換為 void*。
void* 類型的函數指標可以直接使用列印庫特。這是因為 void* 是通用指標類型,可以保存任何類型的位址,包括函數指標。
觀察成員函數指標
使用以下方式列印成員函數指標void* 由於其更複雜的結構而不起作用。不過,根據 C 標準,函數指標的右邊值可以轉換為 bool。
以上是如何使用'cout”在 C 中正確列印函數指標?的詳細內容。更多資訊請關注PHP中文網其他相關文章!