无论如何可以使用成员函数作为默认参数吗?
它尝试了类似的方法,但行不通。有没有办法获得类似的效果?
class A
{
public:
int foo();
void bar(int b = foo());
};
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());
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。重载该函数并调用其中的成员函数。
void bar() { 酒吧(foo()); }
Yes. Overload the function and call the member-function in it.
void bar() { bar(foo()); }