मराठी
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Operator overloading and type conversions

Advertisements
  • Defining an Overloaded Operator 
  • Steps for overloading operator
  • Rules for overloading operators 
  • Types of situations in Type Conversion 

Operator overloading and type conversions

Overloading stands for "giving additional meaning to". We can overload all the operators except the following:  

  1. Class member access operator (· , · *) 
  2. Scope resolution operator ->  ::
  3. Sizeof operator. 
  4. Conditional operator (?:).

Defining operator overloading 

To define an additional task to an operator, we must specify what it means in relation to the class to which the operator is applied. This is done with a special kind of function, called the operator function. The general form of operator function is: 

return-type class-name : : operator op-to-be-overloaded (arg_list)  

     {  

         function-body // task defined 

     } 

The process of overloading involves following steps:  

  1. First, create a class that defines the data - type that is to be used in overloading operation. 
  2. Declare operator function in public part of class. It may be either a member function or a friend function. 
  3. Define the operator function to implement the required operations.

Rules for overloading operators   

  1. Only existing operators can be overloaded. New operators cannot be created.
  2. The overloaded operator must have at least one operand that is user defined type.
  3. We cannot change basic meaning of the operator. 
  4. Overloaded operators follow the syntax rules of the original operators.
  5. Certain operators cannot be overloaded. (See table 3.5).
  6. Certain operators cannot be overloaded by friend function . (See table 3.6)

Type conversions 

When constants and variables of different types are mixed in an expression, complier applies rules of automatic type conversion s. The assignment operation also causes automatic type conversion. The type of data on right of an assignment operator is automatically converted to the type of variable on left. Compiler does not support automatic type conversion for user defined data types. We need to design conversion routines by ourselves, if such operation is required. Three types of situations may arise : 

  1. Conversion from built in type to class type. 
  2. Conversion from class type to built in type  
  3. Conversion from one class type to another class type.
If you would like to contribute notes or other learning material, please submit them using the button below.
Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×