c++ object oriented 1. class and object the main purpose of c++ programming is to add object...

29
C++ Object Oriented C++ Object Oriented 1

Upload: sydney-wilkins

Post on 26-Dec-2015

222 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

C++ Object OrientedC++ Object Oriented

1

Page 2: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Class and ObjectClass and Object

The main purpose of C++ programming is to add

object orientation to the C programming language and

classes are the central feature of C++ that supports

object-oriented programming.

A class is used to specify the form of an object and it

combines data representation and methods for

manipulating that data into one neat package. The

data and functions within a class are called members

of the class.

2

Page 3: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

The main purpose of C++ programming is to add

object orientation to the C programming language and

classes are the central feature of C++ that supports

object-oriented programming.

A class is used to specify the form of an object and it

combines data representation and methods for

manipulating that data into one neat package. The

data and functions within a class are called members

of the class.3

Class and Object (cont)Class and Object (cont)

Page 4: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

C++ Class Definitions:

When you define a class, you define a blueprint for a

data type. This doesn't actually define any data, but

it does define what the class name means, that is,

what an object of the class will consist of and what

operations can be performed on such an object.

For example, we defined the Box data type using the

keyword class as follows:

4

Class and Object (cont)Class and Object (cont)

Page 5: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Define C++ Objects:

A class provides the blueprints for objects, so basically an object is created

from a class. We declare objects of a class with exactly the same sort of

declaration that we declare variables of basic types. Following statements

declare two objects of class Box:

Both of the objects Box1 and Box2 will have their own copy of data members.

5

Class and Object (cont)Class and Object (cont)

Page 6: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Accessing the Data Members:

The public data members of objects of a class can

be accessed using the direct member access

operator (.). Let us try the following example to

make the things clear:

6

Class and Object (cont)Class and Object (cont)

Page 7: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

It is important to note that private and protected members can not

be accessed directly using direct member access operator (.). 7

Class and Object (cont)Class and Object (cont)

Page 8: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

InheritanceInheritance

One of the most important concepts in object-oriented

programming is that of inheritance. Inheritance allows us to

define a class in terms of another class, which makes it

easier to create and maintain an application. This also

provides an opportunity to reuse the code functionality and

fast implementation time.

When creating a class, instead of writing completely new

data members and member functions, we can designate

that the new class should inherit the members of an

existing class. This existing class is called the base class,

and the new class is referred to as the derived class.

8

Page 9: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Inheritance (cont)Inheritance (cont)

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.

Base & Derived Classes:

A class can be derived from more than one classes, which

means it can inherit data and functions from multiple base

classes. To define a derived class, we use a class derivation

list to specify the base class.

class derived-class: access-specifier base-class

9

Page 10: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Inheritance (cont)Inheritance (cont)

Where access-specifier is one of public,

protected, or private, and base-class is the

name of a previously defined class. If the access-

specifier is not used, then it is private by default.

Please consider a base class Shape and its

derived class Rectangle as follows:

10

Page 11: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Inheritance (cont)Inheritance (cont)

11

Page 12: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Inheritance (cont)Inheritance (cont)

Access Control and Inheritance:

A derived class can access all the non-private members

of its base class. Thus base-class members that should

not be accessible to the member functions of derived

classes should be declared private in the base class.

12

Page 13: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Type of Inheritance:

When deriving a class from a base class, the base

class may be inherited through public, protected

or private inheritance. The type of inheritance is

specified by the access-specifier as explained

above.

We hardly use protected or private inheritance, but

public inheritance is commonly used. While using

different type of inheritance, following rules are

applied:13

Inheritance (cont)Inheritance (cont)

Page 14: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

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.

14

Inheritance (cont)Inheritance (cont)

Page 15: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Protected Inheritance: When deriving from a

protected base class, public and protected

members of the base class become protected

members of the derived class.

Private Inheritance: When deriving from a

private base class, public and protected

members of the base class become private

members of the derived class.

15

Inheritance (cont)Inheritance (cont)

Page 16: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Multiple Inheritances:

In C++ class can inherit members from more

than one class and here is the extended syntax:

class derived-class: access baseA, access

baseB…..

16

Inheritance (cont)Inheritance (cont)

Page 17: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

17

Inheritance (cont)Inheritance (cont)

Page 18: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

• Overloading occurs when the same operator or

function name is used with different signatures

• Both operators and functions can be overloaded

• Different definitions must be distinguished by their

signatures (otherwise which to call is ambiguous)- Reminder: signature is the operator/function name

and the ordered list of its argument types- E.g., add(int,long) and add(long,int) have different

signatures- E.g., add(const Base &) and add(const Derived &)

have different signatures, even if Derived is-a Base- Most specific match is used to select which one to call

18

Overview of C++ OverloadingOverview of C++ Overloading

Page 19: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

19

Overloading VS. OverridingOverloading VS. Overriding

• Overriding a base class member function is similar to overloading a function or operator- But for overriding, definitions are distinguished

by their scopes rather than by their signatures

• C++ can distinguish method definitions according to either static or dynamic type- Depends on whether a method is virtual or not- Depends on whether called via a reference or

pointer vs. directly on an object- Depends on whether the call states the scope

explicitly (e.g., Foo::baz();)

Page 20: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

20

Function OverloadingFunction Overloading

You can have multiple definitions for the same function name in the same scope. The definition of the function must differ from each other by the types and/or the number of arguments in the argument list. You can not overload function declarations that differ only by return type.Following is the example where same function print() is being used to print different data types:

Page 21: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

21

Function Overloading (cont)Function Overloading (cont)

Page 22: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

C++ polymorphism means that a call to a

member function will cause a different function to

be executed depending on the type of object that

invokes the function.

Consider the following example where a base

class has been derived by other two classes and

area() method has been implemented by the two

sub-classes with different implementation.

22

PolymorphismPolymorphism

Page 23: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

23

Polymorphism (cont)Polymorphism (cont)

Page 24: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

When the above code is compiled and executed, it produces the following

result:

The reason for the incorrect output is that the call of the function area() is

being set once by the compiler as the version defined in the base class. This is

called static resolution of the function call, or static linkage - the function

call is fixed before the program is executed. This is also sometimes called

early binding because the area() function is set during the compilation of the

program.

24

Polymorphism (cont)Polymorphism (cont)

Page 25: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

But now, let's make a slight modification in our program

and precede the declaration of area() in the Shape class

with the keyword virtual so that it looks like this:

25

Polymorphism (cont)Polymorphism (cont)

Page 26: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Data abstraction refers to, providing only essential

information to the outside world and hiding their

background details, i.e., to represent the needed

information in program without presenting the details.

For example, a database system hides certain details of

how data is stored and created and maintained. Similar

way, C++ classes provides different methods to the

outside world without giving internal detail about those

methods and data.

You can implement a class with public and private

members is an example of data abstraction.26

AbstractionAbstraction

Page 27: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

27

Abstraction (cont)Abstraction (cont)

Page 28: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

Encapsulation is placing the data and the functions that

work on that data in the same place. While working with

procedural languages, it is not always clear which functions

work on which variables but object-oriented programming

provides you framework to place the data and the relevant

functions together in the same object.

Data Encapsulation Example:

Any C++ program where you implement a class with public

and private members is an example of data encapsulation

and data abstraction. Consider the following example:

28

EncapsulationEncapsulation

Page 29: C++ Object Oriented 1. Class and Object The main purpose of C++ programming is to add object orientation to the C programming language and classes are

29

Encapsulation (cont)Encapsulation (cont)