当前位置:  开发笔记 > 编程语言 > 正文

非静态和静态数据和功能

如何解决《非静态和静态数据和功能》经验,为你挑选了2个好方法。

是否可以在静态成员函数中调用非静态数据成员?是否也可以在静态成员函数中调用非静态成员函数?

你怎么做呢?



1> 小智..:

是的 - 你可以,而且这是怎么回事

class Foo
{
    public:
     static void staticFunc( const Foo &  foo)
     {
           foo.memberFunc();      

     }
      void memberFunc() const
      {
           staticFunc(*this);

      } 


}; 

这是一种设计,除了递归之外,还演示了如何调用静态和非静态成员函数.



2> dirkgently..:

由于人们总是倾向于低调,这里是摘要:

您可以从静态成员函数中访问非静态成员,前提是您传入了类实例,或者是其指针或引用.对象的限定(换句话说,静态成员签名)将决定您是否可以从内部调用const或同时调用两者constnon-const成员函数.

非静态成员数据/函数依赖于this指针 - 它基本上是指向访问/调用成员数据/函数的对象的指针.静态是类级别,不与单个对象关联.但是,如果将类实例/或实例本身的引用/指针传递给静态函数,则可以进行调用.

#include 
struct Eg {
 Eg() : x(42), y(-42) {}

static void foo(Eg const&f) {
    std::cout << "foo\n";
    f.bar();

    // we are good -- x is mutable
    std::cout << f.x << std::endl;
    f.x = 24;
    std::cout << f.x << std::endl;

    std::cout << f.y << std::endl;

    // you need non-const access for the following
    // so they don't work -- see foo signature
    //f.y = -24; compile error -- const l-value    

   // f.barbar(); same as above
}

void bar() const { // const required since we have a const reference
 std::cout << "bar\n";
}

void barbar() { // const required since we have a const reference
 std::cout << "bar\n";
}

  // note well the members
  mutable int x;
  int y;
};

int main() {
   Eg ex;

   Eg::foo(ex); // or ex.foo(ex);
}

看看Singleton/factory方法模式 - 它们会引起您的兴趣.

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有