標識符是在程式設計中給予實體的名稱,以便在程式中進行識別。
通常,標識符是由程式設計師創建的,以實現高效工作,但也有一些預先定義的標識符內建在程式設計中。例如,cout、cin等。
在這裡,我們將看到C程式語言中的一個預先定義標識符__func__。
__func__的正式定義為 −
「標識符__func__應被翻譯器隱式聲明,就好像在每個函數定義的左花括號之後立即跟著宣告一樣。」
static const char __func__[] = “function-name”;
appeared, where function-name is the name of the lexically-enclosing function.」
C program The __func__ is a compiler-generated identifier that is created to identify the function using function name.
Let's see a few code examples to make the concept more clear,
Live Demo
#include <stdio.h> void function1 (void){ printf ("%s</p><p>", __func__); } void function2 (void){ printf ("%s</p><p>", __func__); function1 (); } int main (){ function2 (); return 0; }
Live Demo
function2 function1
這個標識符甚至可以在主方法中使用。例如,
線上示範
#include <stdio.h> int main (){ printf ("%s</p><p>", __func__); return 0; }
輸出
main
Let's see
Let's see## Live Demo
#include <stdio.h> int __func__ = 123; int main (){ printf ("%s</p><p>", __func__); return 0; }
輸出error
#__File__ - 傳回目前檔案的名稱。
__LINE__讓我們看一個程式碼來顯示實作
線上示範#include <stdio.h>
void function1(){
printf("The function: %s is in line: %d of the file :%s</p><p>", __func__,__LINE__,__FILE__);
}
int main(){
function1();
return 0;
}
The function: function1 is in line: 3 of the file :main.c
以上是在C語言中,預先定義標識符__func__的詳細內容。更多資訊請關注PHP中文網其他相關文章!