【C/C++】static
摘要:
C/C++共有 static修饰局部变量(比如函数中的局部变量),此时这个变量的位置就在全局静态区,但仍旧只能在函数内部访问,比如 1 #include <iostream> 2 using namespace std; 3 4 void test(){ 5 static int a=0; 6 a+ 阅读全文
posted @ 2022-09-21 17:18 甲鱼写代码 阅读(25) 评论(0) 推荐(0)
浙公网安备 33010602011771号