Computer Science, asked by parulkpatil1450, 9 months ago

C++ में किसी एक ऑपरेटर का नाम बताइए जिसे ओवरलोड नहीं किया जा सकता ?

Answers

Answered by suchindraraut17
0

ऑपरेटर ओवरलोडिंग C++

Explanation:

ऑपरेटर ओवरलोडिंग C++  मे polymorphism का एक टाइप है| User- defined meaning के लिए ऑपरेटर को overload किया जाता है| User-defined data type पर ऑपरेशन perform करने के लिए इसका use होता है|

वो operators जिनको overload नही किया जा सकता है जिसे को इसको नीचे बताया गया है|

?: - (conditional)

.  - (member selection)  

:: - (scope resolution)

Answered by StaceeLichtenstein
0

Scope resolution operator(::) ,ternary operator(?:) ,etc is not overloaded in c++ programming language

Explanation:

  • The main objective of operator overloading to give the significant meaning to the operators for the particular data type. The operator overloading is enabling and consolidating the new class type smoothly into our application framework.
  • The operator overloading makes the program more extensible we can overload the + operator ,etc but we cannot overload the scope resolution ,ternary operator ,etc in the c++ programming language .

Learn More :

  • brainly.in/question/6139678
Similar questions