OOPs Concepts
Programming and Technical
Programming
Definition
What are all the operators that cannot be overloaded?
Read Solution (Total 6)
-
- . (Member Access or Dot operator)
?: (Ternary or Conditional Operator )
:: (Scope Resolution Operator)
.* (Pointer-to-member Operator )
sizeof (Object size Operator)
typeid (Object type Operator) - 9 years agoHelpfull: Yes(3) No(0)
- 1. Scope resolution operator(::)
2. Sizeof() operator
3. Conditional operator(?:)
4. dot operator(.) - 9 years agoHelpfull: Yes(2) No(0)
- :: > scope resolution operator@
? > conditional operator
# - 9 years agoHelpfull: Yes(1) No(0)
- ::, &, = cannot be overloaded in C++
- 9 years agoHelpfull: Yes(0) No(0)
- ::(scope resolution operator)
.(access member)
&&,==,?(conditional operators) - 5 years agoHelpfull: Yes(0) No(0)
- Operator overloading
- 4 years agoHelpfull: Yes(0) No(0)
OOPs Concepts Other Question