Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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());
};
share|improve this question
What exactly are you trying to accomplish? Give us a real example of what you want to do. – Mike Bantegui Feb 4 '11 at 17:54
I have a member function like such getDistance(Units units = getDefaultUnits()); so I don't have to specify the units unless i want something other than the default. I've also thought about adding DEFAULT to the Units enum. – FigBug Feb 4 '11 at 18:25
It might be an even better idea to add different types for your different units and add implicit conversion functions between all your different units. That way, you can explicitly use units where u need them, and let the compiler take care of the rest! Remember that using types is very cheap in C++, usually free if you do it right. – ltjax Feb 5 '11 at 8:34

1 Answer

up vote 14 down vote accepted

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

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

share|improve this answer
+1 for the smart answer! – Nawaz Feb 4 '11 at 17:58
I'm trying to understand this. Could you help me? I'm so confused, don't see the purpose of this. You now have 2 bar()'s declared, one to just call another one? – Shredder Feb 4 '11 at 18:04
4  
@Nicklamort: Actually when you've default value for a parameter, then you can call that function without passing any argument for that parameter; you can optionally pass argument also. This is exactly what is the situation here. You can call bar as bar() as well as bar(10)... so in effect it seems that bar's parameter has default value! – Nawaz Feb 4 '11 at 18:12
Oooh I see, so with overloaded functions, you can, like, 'simulate' default parameters..nice. Thx for clarifying nawaz! :) – Shredder Feb 4 '11 at 18:23
I was hoping to avoid this since it's a bunch of extra code, but it does solve the problem. – FigBug Feb 4 '11 at 18:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.