12 Computer Science Notes CH02 Basic Concepts of Oop Classes and Objects PDF
12 Computer Science Notes CH02 Basic Concepts of Oop Classes and Objects PDF
Object Oriented Programming follows bottom up approach in program design and emphasizes on
safety and security of data..
Inheritance is the process of forming a new class from an existing class or base class. The
base class is also known as parent class or super class.
Derived class is also known as a child class or sub class. Inheritance helps in
reusability of code , thus reducing the overall size of the program
Data Abstraction:
It refers to the act of representing essential features without including the background
details .Example : For driving , only accelerator, clutch and brake controls need to be
learnt rather than working of engine and other details.
Data Encapsulation:
It means wrapping up data and associated functions into one single unit called class..
A class groups its members into three sections :public, private and protected, where
private and protected members remain hidden from outside world and thereby helps in
implementing data hiding.
Modularity :
The act of partitioning a complex program into simpler fragments called modules is
called as modularity.
It reduces the complexity to some degree and
It creates a number of well defined boundaries within the program .
Polymorphism:
Poly means many and morphs mean form, so polymorphism means one name multiple
forms.
It is the ability for a message or data to be processed in more than one form.
C++ implements Polymorhism through Function Overloading , Operator overloading and
Virtual functions .
SHAPE
area()
RECTANGLE()
area(rectangle)
TRIANGLE()
CIRCLE()
Area(triangle)
Area(circle)
16
Classes in Programming :
It is a collection of variables, often of different types and its associated functions.
Class just binds data and its associated functions under one unit there by enforcing
encapsulation.
Classes define types of data structures and the functions that operate on those data
structures.
A class defines a blueprint for a data type.
Declaration/Definition :
A class definition starts with the keyword class followed by the class name; and the class body,
enclosed by a pair of curly braces. A class definition must be followed either by a semicolon or a
list of declarations.
class class_name {
access_specifier_1:
member1;
access_specifier_2:
member2;
...
} object_names;
Where class_name is a valid identifier for the class, object_names is an optional list of names for
objects of this class. The body of the declaration can contain members that can either be data or
function declarations, and optionally access specifiers.
[Note: the default access specifier is private.
Example : class Box { int a;
public:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};
17
private
public
protected
Member-Access Control
Type of Access
Meaning
Private
Protected
Public
OBJECTS in C++:
Objects represent instances of a class. Objects are basic run time entities in an object oriented
system.
Creating object / defining the object of a class:
The general syntax of defining the object of a class is:Class_name object_name;
In C++, a class variable is known as an object. The declaration of an object is similar to that of a
variable of any data type. The members of a class are accessed or referenced using object of a
class.
Box Box1;
Box Box2;
Both of the objects Box1 and Box2 will have their own copy of data members.
The member functions of a class can be defined outside the class definitions. It is only declared
inside the class but defined outside the class. The general form of member function definition
outside the class definition is:
Return_type Class_name:: function_name (argument list)
{
Function body
}
Where symbol :: is a scope resolution operator.
The scope resolution operator (::) specifies the class to which the member being declared
belongs, granting exactly the same scope properties as if this function definition was directly
included within the class definition
class sum
{
int A, B, Total;
public:
void getdata ();
void display ();
};
void sum:: getdata ()
// Function definition outside class definition Use of :: operator
{
cout<< \n enter the value of A and B;
cin>>A>>B;
}
void sum:: display ()
// Function definition outside class definition Use of :: operator
{
Total =A+B;
cout<<\n the sum of A and B=<<Total;
}
19
The member function of a class can be declared and defined inside the class definition.
class sum
{
int A, B, Total;
public:
void getdata ()
{
cout< \n enter the value of A and B;
cin>>A>>B;
}
void display ()
{
total = A+B;
cout<<\n the sum of A and B=<<total;
}
};
INLINE FUNCTIONS
Inline functions definition starts with keyword inline
The compiler replaces the function call statement with the function code
itself(expansion) and then compiles the entire code.
They run little faster than normal functions as function calling overheads are saved.
A function can be declared inline by placing the keyword inline before it.
Example
inline void Square (int a)
{ cout<<a*a;}
void main()
{.
Square(4);
{ cout <<4*4;}
Square(8) ;
{ cout <<8*8; }
In place of function
call , function body is
substituted because
Square () is inline
function
20
/**********OUTPUT***********
Height is:6feet 5inches
Height is:2feet 7inches
Height is 9 feet and 0
21
22
23
Public Members
A function Enter( ) to allow user to enter values for ANo, Name, Agg & call function
GradeMe( ) to find the Grade
A function Result ( ) to allow user to view the content of all the data members.
Ans:class Applicant
{long ANo;
char Name[25];
float Agg;
char Grade;
void GradeMe( )
{
if (Agg > = 80)
Grade = A;
else if (Agg >= 65 && Agg < 80 )
Grade = B;
else if (Agg >= 50 && Agg < 65 )
Grade = C;
else
Grade = D;
}
public:
void Enter ( )
{
cout <<\n Enter Admission No.
; cin>>ANo;
cout <<\n Enter Name of the Applicant ; cin.getline(Name,25);
cout <<\n Enter Aggregate Marks obtained by the Candidate :; cin>>Agg;
GradeMe( );
}
void Result( )
{
cout <<\n Admission No. <<ANo;
cout <<\n Name of the Applicant ;<<Name;
cout<<\n Aggregate Marks obtained by the Candidate.
<< Agg;
cout<<\n Grade Obtained is << Grade ;
}
};
24
25
Calculate() a function that calculates overall percentage of marks and return the
percentage of marks.
public members :
Readmarks() a function that reads marks and invoke the Calculate function.
Displaymarks() a function that prints the marks.
Q3 : Define a class report with the following specification :
4
Private members :
adno
4 digit admission number
name
20 characters
marks
an array of 5 floating point values
average
average marks obtained
getavg() to compute the average obtained in five subjects
Public members :
readinfo() function to accept values for adno, name, marks, and invoke the function
getavg().
displayinfo() function to display all data members on the screen you should give function
definitions.
Q4 Declare a class myfolder with the following specification :
4
Private members of the class
Filenames an array of strings of size[10][25]( to represent all the names of files inside
myfolder)
Availspace long ( to represent total number of bytes available in myfolder)
Usedspace long ( to represent total number of bytes used in myfolder)
public members of the class
2.
3.
4.
5.
6.
26
TYPES OF CONSRUCTORS:
1. Default Constructor:
A constructor that accepts no parameter is called the Default Constructor. If you don't declare a
constructor or a destructor, the compiler makes one for you. The default constructor and
destructor take no arguments and do nothing.
2. Parameterized Constructors:
A constructor that accepts parameters for its invocation is known as parameterized Constructors ,
also called as Regular Constructors.
DESTRUCTORS:
A destructor is also a member function whose name is the same as the class name but is
preceded by tilde(~).It is automatically by the compiler when an object is destroyed.
Destructors are usually used to deallocate memory and do other cleanup for a class object
and its class members when the object is destroyed.
A destructor is called for a class object when that object passes out of scope or is explicitly
deleted.
Example :
class TEST
{ int Regno,Max,Min,Score;
Public:
TEST( )
// Default Constructor
{
}
TEST (int Pregno,int Pscore)
// Parameterized Constructor
{
Regno = Pregno ;Max=100;Max=100;Min=40;Score=Pscore;
}
~ TEST ( )
// Destructor
{ Cout<<TEST Over<<endl;}
};
The following points apply to constructors and destructors:
Constructors and destructors do not have return type, not even void nor can they return
values.
References and pointers cannot be used on constructors and destructors because their
addresses cannot be taken.
27
Example :
class Sample{ int i, j;}
public:
Sample(int a, int b)
// constructor
{ i=a;j=b;}
Sample (Sample & s)
//copy constructor
{ j=s.j ; i=s.j;
Cout <<\n Copy constructor working \n;
}
void print (void)
{cout <<i<< j<< \n;}
:
};
Note : The argument to a copy constructor is passed by reference, the reason being that when
an argument is passed by value, a copy of it is constructed. But the copy constructor is creating
a copy of the object for itself, thus ,it calls itself. Again the called copy constructor requires
another copy so again it is called.in fact it calls itself again and again until the compiler runs
out of the memory .so, in the copy constructor, the argument must be passed by reference.
29
Ans.
valid
valid
invalid
valid
invalid
Q3 Given the following C++ code, answer the questions (i) & (ii).
class TestMeOut
{
public :
~TestMeOut() // Function 1
{ cout << "Leaving the examination hall " << endl; }
TestMeOut() // Function 2
{ cout << "Appearing for examination " << endl; }
void MyWork() // Function 3
{ cout << "Attempting Questions " << endl; }
};
(i) In Object Oriented Programming, what is Function 1 referred as and when does it get invoked
/ called ?
(ii) In Object Oriented Programming, what is Function 2 referred as and when does it get invoked
/ called ?
30
INHERITANCE
Inheritance is the process by which new classes called derived classes are created
from existing classes called base classes.
The derived classes have all the features of the base class and the programmer can choose
to add new features specific to the newly created derived class.
The idea of inheritance implements the is a relationship. For example, mammal IS-A
animal, dog IS-A mammal hence dog IS-A animal as well and so on.
Reusability of Code
Saves Time and Effort
Faster development, easier maintenance and easy to extend
Capable of expressing the inheritance relationship and its transitive nature which
ensures closeness with real world problems .
31
// Derived class
class Rectangle: public Shape
{
public:
int getArea()
{
return (width * height);
}
};
int main(void)
{
Rectangle Rect;
Rect.setWidth(5);
Rect.setHeight(7);
// Print the area of the object.
cout << "Total area: " << Rect.getArea() << endl;
return 0;
}
When the above code is compiled and executed, it produces following result:
Total area: 35
public
protected
private
Same class
yes
yes
yes
Derived classes
yes
yes
no
Outside classes
yes
no
no
A derived class inherits all base class methods with the following exceptions:
When deriving a class from a base class, the base class may be inherited through public,
protected or private inheritance. We hardly use protected or private inheritance but public
inheritance is commonly used. While using different type of inheritance, following rules are
applied:
32
1. Public Inheritance: When deriving a class from a public base class, public members of
the base class become public members of the derived class and protected members of the
base class become protected members of the derived class. A base class's private
members are never accessible directly from a derived class, but can be accessed through
calls to the public and protected members of the base class.
2. Protected Inheritance: When deriving from a protected base class, public and
protected members of the base class become protected members of the derived class.
3. Private Inheritance: When deriving from a private base class, public and protected
members of the base class become private members of the derived Class.
TYPES OF INHERITANCE
1. Single class Inheritance:
Single inheritance is the one where you have a single base class and a single derived class.
Class A it is a Base class (super)
Class B
2. Multilevel Inheritance:
In Multi level inheritance, a subclass inherits from a class that itself inherits from another
class.
Class A
Class B
Class C
3. Multiple Inheritance:
In Multiple inheritances, a derived class inherits from multiple base classes. It has
properties of both the base classes.
Class A
Class B
Class C
Base class
Derived class
33
4. Hierarchical Inheritance:
In hierarchial Inheritance, it's like an inverted tree. So multiple classes inherit from a
single base class.
Base Class
Class A
Class B
Class C
Sub Class( derived)
Class D
5. Hybrid Inheritance:
It combines two or more forms of inheritance .In this type of inheritance, we can have
mixture of number of inheritances but this can generate an error of using same name
function from no of classes, which will bother the compiler to how to use the functions.
Therefore, it will generate errors in the program. This has known as ambiguity or
duplicity.
Ambiguity problem can be solved by using virtual base classes
Class A
Class B
Class C
Class D
(i) Name the base class and derived class of the class COUNTRY.
(ii) Name the data member(s) that can be accessed from function DISPLAY().
(iii) Name the member function(s), which can be accessed from the objects of class STATE.
(iv) Is the member function OUTPUT() accessible by the objects of the class COUNTRY ?
Ans (i) Base class : WORLD
Derived class : STATE
(ii) M.
(iii) DISPLAY(), INDATA() and OUTDATA()
(iv) No
Q2. Consider the following declarations and answer the questions given below :
class living_being {
char name[20];
protected:
int jaws;
public:
void inputdata(char, int);
void outputdata();
}
class animal : protected living_being {
int tail;
protected:
int legs;
public:
void readdata(int, int);
void writedata();
};
class cow : private animal {
char horn_size;
public:
void fetchdata(char);
void displaydata();
};
(i) Name the base class and derived class of the class animal.
(ii) Name the data member(s) that can be accessed from function displaydata.
(iii) Name the data member(s) that can be accessed by an object of cow class.
(iv) Is the member function outputdata accessible to the objects of animal class.
Ans (i) Base class : living_being
Derived class : cow
(ii) horn_size, legs, jaws
(iii) fetchdata() and displaydata()
(iv) No
Q3. Consider the following and answer the questions given below :
class MNC
{
char Cname[25]; // Company name
protected :
char Hoffice[25]; // Head office
public :
MNC( );
char Country[25];
void EnterDate( );
void DisplayData( );
};
35
36
(i) Which constructor will be called first at the time of declaration of an object of class
Manager?
(ii) How many bytes will an object belonging to class Manager require ?
(iii) Name the member function(s), which are directly accessible from the object(s) of class
Manager.
(iv) Is the member function OUTPUT() accessible by the objects of the class Director ?
Ans (i) CEO()
(ii) 16
(iii) DISPLAY(), INDATA(), OUTDATA(), INPUT(), OUTPUT()
(iv) Yes
public:
void readphysicsbook();
void showphysicsbook();}
(i)
(ii)
(iii)
(iv)
Name the members, which can be accessed from the member functions of class
physicsbook.
Name the members, which can be accessed by an object of Class textbook.
Name the members, which can be accessed by an object of Class physicsbook.
What will be the size of an object (in bytes) of class physicsbook.
38