首頁  >  文章  >  後端開發  >  C 或 C++ 中函數的位址

C 或 C++ 中函數的位址

WBOY
WBOY轉載
2023-08-27 19:05:02819瀏覽

C 或 C++ 中函数的地址

在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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除