Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Class notes

Class notes POLYMOSPHISM

Rating
-
Sold
-
Pages
4
Uploaded on
03-12-2024
Written in
2024/2025

This notes provides a detailed information about the concept called "polymorphism". Explained in simple terms followed by suitable examples.

Institution
Course

Content preview

POLYMORPHISM

The word “polymorphism” means having many forms. In simple words, we can define polymorphism
as the ability of a message to be displayed in more than one form. A real-life example of
polymorphism is a person who at the same time can have different characteristics. A man at the
same time is a father, a husband, and an

employee. So the same person exhibits different behavior in different situations. This is called
polymorphism. Polymorphism is considered one of the important features of Object-Oriented
Programming. Types of Polymorphism

 Compile-time Polymorphism

 Runtime Polymorphism

Operator Overloading

Operator overloading is a compile-time polymorphism. It is an idea of giving special meaning to an
existing operator in C++ without changing its original meaning.

It has the ability to provide the operators with a special meaning for a data type, this ability is known
as operator overloading. Operator overloading is a compile-time polymorphism. For example, we
can overload an operator ‘+’ in a class like String so that we can concatenate two strings by just using
+. Example:

#include <iostream>

using namespace std;

class Complex {

private:

int real, imag;

public:

Complex(int r = 0, int i = 0)

{

real = r;

imag = i;

}

// This is automatically called when '+' is used with between two Complex objects Complex
operator+(Complex const& obj)

{

Complex res;

res.real = real + obj.real;

res.imag = imag + obj.imag;

Written for

Course

Document information

Uploaded on
December 3, 2024
Number of pages
4
Written in
2024/2025
Type
Class notes
Professor(s)
Yasmin
Contains
All classes

Subjects

$11.79
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
ruksanaafsad12

Get to know the seller

Seller avatar
ruksanaafsad12 mycas
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
1 year
Number of followers
0
Documents
1
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions