学习 static 定义静态变量的用法。


 
#include
 
void foo()
{
    static int x = 0;
    x++;
    printf("%d\n", x);
}
 
int main()
{
    foo();  // 输出 1
    foo();  // 输出 2
    foo();  // 输出 3
    return 0;
}

你可能感兴趣的:(java,算法,数据结构)