I have a question about overloading a function with only difference in "const". For instance, if there is a function A, which is pass-by-reference, it is ok to overload it by pass-by-reference-to-const. However, when will the first one being invoked, and when will the second one being invoked? Thanks!
overloading a function which differs from the original only by "const" in parameter list
82 Views Asked by Sarah At
2
It's definitely OK.
The first one will be invoked if you pass a non-const lvalue of type
int
. The second one will be invoked in any other case.