EBK DATA STRUCTURES AND ALGORITHMS IN C
EBK DATA STRUCTURES AND ALGORITHMS IN C
4th Edition
ISBN: 9781285415017
Author: DROZDEK
Publisher: YUZU
bartleby

Videos

Question
Book Icon
Chapter 1, Problem 11E
Program Plan Intro

Operator Overloading:

  • Operator overloading denotes a special case in which some operators like “=”, “+” or “==” are been treated as polymorphic functions.
  • The polymorphic function denotes the characteristic of applying a different meaning for anything in a different context.
  • Entities such as a function, an object or a variable are allowed to exist in more than one form.
  • Based on the argument types, the operators would have different behaviors.
  • For overloading an operator, a new meaning is been provided to user defined types.

Syntax:

return_type operator@(list_of_arguments)

{

  //definitions

}

Points to be noted while operator overloading

  • All operators cannot be overloaded
  • New operators could not be created.
  • Precedence or associativity of operators could not be changed
  • Most of the operator overloading can be performed as either a non-member function or member function.
  • Operators are overloaded only when their usage is natural and unambiguous.

Blurred answer
Students have asked these similar questions
in C++ Why we override functions?
What is an exception and briefly explain how you can handle it in C++ member function?
In C++, what is the benefit of using typedefs in a program? Here is an exmaple line of code: typedef double value_type;   Does this mean that value_type therefore gets used throughout the program as a specified description for a double? Why can't we just use double always?
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Call By Value & Call By Reference in C; Author: Neso Academy;https://www.youtube.com/watch?v=HEiPxjVR8CU;License: Standard YouTube License, CC-BY