Is there anyway to use a member function as a defa

2019-06-25 11:44发布

问题:

It tried something like this, which doesn't work. Is there a way to get a similar effect?

class A
{
public:
  int foo();
  void bar(int b = foo());
};

回答1:

Yes. Overload the function and call the member-function in it.

void bar() { bar(foo()); }