Share via

operator ?= overloading

josh BAUER 166 Reputation points
2020-11-20T08:53:54.297+00:00

Is there a way to overload ?= operator in c++?
I find it useful.
Alternative would be to overload ?>> operator.
Can I do it? Seeking file could be done with those operators.

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.


1 answer

Sort by: Most helpful
  1. Guido Franzke 2,191 Reputation points
    2020-11-23T07:26:28.367+00:00

    Hello,
    as already said, there is no ?= or ?>> operator in C++. Have a look at the operators that exist: operators
    Regards, Guido

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.