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.

C++
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.
3,527 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Guido Franzke 2,196 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