c_cpp 非静态mem函数中的static

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 非静态mem函数中的static相关的知识,希望对你有一定的参考价值。

#include <iostream>


class Foo
{
private:
   long i;
public:
   Foo(): i(3)
   {}
   ~Foo(){}
   
   void inc(void)
   {
     static int num = 3;
     num++;
     i += num;
   }
   
   void print(void)
   {
     std::cout << i << std::endl;
   }
};

int main() {
  Foo f;
  f.inc();
  f.inc();
  f.print();
}

以上是关于c_cpp 非静态mem函数中的static的主要内容,如果未能解决你的问题,请参考以下文章

非静态成员作为非静态成员函数的默认参数[重复]

不用static,巧用对象.方法调用java中的函数

static小结

C++中得sort函数的比较函数(第三个参数)为什么要声明为static

非本地与静态相同吗?

class中static总结-静态成员函数和静态成员变量