首页 > 其他 > 详细

第五周 程序阅读——static(2)

时间:2015-04-06 15:46:22      阅读:111      评论:0      收藏:0      [点我收藏+]

#include <iostream>
using namespace std;
class Test{
   private:
      static int val;
      int a;
   public:
      static int func();
      static void sfunc(Test &r);
};

int Test::val=20;
int Test::func()
{
   val+=val;
   return val;
}

void Test::sfunc (Test &r)
{
    r.a=25;
    cout<<"Result3="<<r.a<<endl;
}

int main(){
  cout <<"Resultl="<<Test::func()<<endl;
  Test a;
  cout<<"Result2="<<a.func()<<endl;
  Test::sfunc (a);
  return 0;
}
运行结果:

 

技术分享

 

知识点总结:

 

static静态变量的初始化

 

学习心得:

 

好好学习 天天向上

 

第五周 程序阅读——static(2)

原文:http://blog.csdn.net/ljd939952281/article/details/44901833

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!