Suppose I have:
Foo foo;
is there a shorthand for this?
foo.operator->().operator()(1, 2);
|
|
Assuming you actually meant If your But without more detail (and without you providing an expression that's actually valid C++ -- there's no way in which |
||||
|
|
|
Well... Yes. The shorter form would look as
As for eliminating the In C++ the use of overloaded |
||||
|
|
Well, no, but, assuming you have write permissions to the class, you could define another member function that calls operator(), and then you'd have something like:
That you find yourself in this position is a sign that you (or the person who wrote this class) is being a bit too cute with operator overloading. |
|||||
|