I want to achieve this:
- second parameter by default set to first argument
Something like:
int foo (int a, int b = a);
But how to do that?
Thanks a lot!
|
I want to achieve this:
Something like:
But how to do that? Thanks a lot! |
|||
|
|
|
This is forbidden by: 8.3.6 Default arguments [dcl.fct.default]
An alternative is overloading:
|
|||||||||||
|
|
I recommend using overloading for this particular task as Luchian Grigore suggested, but common practice would be to reserve some value to say "this is default". For example
Using object (not scalar values) this could be really nicely implemented (by creating new delivered class reserved to represent default value), but with int you have to do this. Note that you have to be 100% sure that |
|||||||||||
|
|
The reason this is disallowed has already been addressed, but another solution along the lines of @Vyktor's is to use
|
|||
|
|
This is a little funny answer - but works:
One disadvantage is that this will call some function twice (a known macro drawback):
|
|||
|
|