f0708.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0708.cpp
  3. // 静态局部数据
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. void func();
  9. int n=1;
  10. //-------------------------------------
  11. int main(){
  12.   int a=0, b=-10;
  13.   cout<<"a="<<a<<", b="<<b<<", n="<<n<<endl;
  14.   func();
  15.   cout<<"a="<<a<<", b="<<b<<", n="<<n<<endl;
  16.   func();
  17. }//------------------------------------
  18. void func(){
  19.   static int a=2;
  20.   int b=5;
  21.   a+=2, b+=5;
  22.   n+=12;
  23.   cout<<"a="<<a<<", b="<<b<<", n="<<n<<endl;
  24. }//====================================
  25.