c++ - Are there any other keywords that can be accessed using the global namespace scope resolution operator? -
Global new and delete can be used as normal, but you can also prefix :: operator and this The same will work Are there any other keywords that have such behavior?
Yes, you can also do the operator
, like :: Operator + (A, B)
.
I believe that new
, delete
and are operators
in standard C ++, which allow it Are there.
Comments
Post a Comment