在C或C 中,變數儲存在記憶體中,因此我們可以獲得它們的記憶體位址。同樣,函數也儲存在記憶體中,因此它們也有一些位址。要取得位址,我們可以只使用函數名稱,而不使用括號。
請檢查以下程序以獲得清晰的想法。
#include <stdio.h> void my_function() { printf("Hello World"); } int main() { printf("The address of the my_function is: %p\n", my_function); printf("The address of the main is: %p\n", main); }
The address of the my_function is: 0000000000401530 The address of the main is: 000000000040154B
以上是C 或 C++ 中函數的位址的詳細內容。更多資訊請關注PHP中文網其他相關文章!