c++關鍵字static用法

1.隱藏 不管是函數仍是變量,添加static均可以隱藏,即只能在本文件裏使用。 當同時編譯多個文件時,未加static的全局變量和函數都具備全局可見性 //a.cpp static int a = 10; int b = 11; static void s() { cout << "static s" << endl; } void f() { cout << "static f" <<
相關文章
相關標籤/搜索