Presentation is loading. Please wait.

Presentation is loading. Please wait.

Object Oriented Programming with C++/ Session 1/ 1 of 50 Basic Object Oriented Concepts Session 1.

Similar presentations


Presentation on theme: "Object Oriented Programming with C++/ Session 1/ 1 of 50 Basic Object Oriented Concepts Session 1."— Presentation transcript:

1 Object Oriented Programming with C++/ Session 1/ 1 of 50 Basic Object Oriented Concepts Session 1

2 Object Oriented Programming with C++/ Session 1/ 2 of 50 Session Objectives n Discuss the following: The Object-Oriented approach Drawbacks of traditional programming Object-Oriented programming n Discuss basic Object-Oriented concepts such as: Objects Classes Properties

3 Object Oriented Programming with C++/ Session 1/ 3 of 50 Session Objectives (Contd.) Methods Abstraction Inheritance Encapsulation Polymorphism n Compare Classes with Structures n Describe Private and Public sections of Classes

4 Object Oriented Programming with C++/ Session 1/ 4 of 50 Session Objectives (Contd.) n Define Member functions n Use the Objects and Member functions of a Class Define Objects Access Member Functions Pass and return Objects n Discuss briefly the features of C++ and another OO language (Smalltalk)

5 Object Oriented Programming with C++/ Session 1/ 5 of 50 The Object-Oriented approach n Can classify living beings as objects just as we classify things we use as objects of different types. n Any application can be defined in terms of entities or objects so that the process replicates human thought process as closely as possible.

6 Object Oriented Programming with C++/ Session 1/ 6 of 50 Departments as objects in an organisation n People in each department control and operate on that department's data. Sales PersonnelAccounts

7 Object Oriented Programming with C++/ Session 1/ 7 of 50 Traditional programming: Drawbacks n Unmanageable programs Traditional programs: List of instructions written in a language that tells the computer to perform some actions. When programs become larger they become unmanageable. Functions/procedures/subroutines adopted to make programs more comprehensible. As programs grow larger and more complex, even use of functions can create problems.

8 Object Oriented Programming with C++/ Session 1/ 8 of 50 Problems in modification of data n Data plays a crucial role in traditional programming techniques. n Adding new data items means modifying all the tasks or functions that access the data. As program size increases it is difficult to locate and to modify all functions which use the data n Restrict access to the data so that only a few critical functions act upon it. n Next to impossible to separate parts of a program from revisions made in another part.

9 Object Oriented Programming with C++/ Session 1/ 9 of 50 Difficulty in implementation n Focus of traditional programming approach: On implementation details. n Focus of a person’s thinking: In terms of things or entities, their properties and actions. n OOP techniques help to correspond real- world entities and actions to functions and data at the programming level.

10 Object Oriented Programming with C++/ Session 1/ 10 of 50 Introduction to OOP n OOP allows for analysis and design of an application in terms of entities or objects. n Process replicates the human thought process as closely as possible. n Code and data are merged into a single indivisible thing -- an object. n Close match between objects in the programming sense and objects in the real world.

11 Object Oriented Programming with C++/ Session 1/ 11 of 50 Data and Functions of an Object Accounts Data: Number of employees Salary statements Bills Vouchers Receipts Petty cash records Banking data Functions: Calculate salary Pay salary Pay bills Tally accounts Transact with banks

12 Object Oriented Programming with C++/ Session 1/ 12 of 50 Objects n Represent an entity in the real world. n A concept or thing with defined boundaries that is relevant to the problem we are dealing with. n Objects serve two purposes: They help to understand the real world They provide a practical basis for a computer application

13 Object Oriented Programming with C++/ Session 1/ 13 of 50 Objects (Contd.) n Each object has its own properties or characteristics that describe what it is or does. Vehicles in a traffic-monitoring application Menus The mouse and the keyboard A personnel file A table of marks relating to an examination Time Complex numbers

14 Object Oriented Programming with C++/ Session 1/ 14 of 50 Different Objects Name: Jack Age: 28 Weight: 65 kgs Model: Ferrari Colour: Red Year: 1995 Actions: Walk Talk Sleep Actions: Start Stop Accelerate

15 Object Oriented Programming with C++/ Session 1/ 15 of 50 Classes n Grouping of objects that have the same properties, common behaviour and common relationships. n The term class is an abbreviation of “class of objects”. Example, A class of persons, class of animals, class of processes. n Each object is said to be an instance of its class.

16 Object Oriented Programming with C++/ Session 1/ 16 of 50 Objects and Classes Abstract into Polygon class Properties: Vertices Border colour Fill colour Methods: Draw Erase Move Polygon objects

17 Object Oriented Programming with C++/ Session 1/ 17 of 50 Property/Attribute n A characteristic required of an object or entity when represented in a class is called a property. n A class is a prototype and not an actual specimen of the entity. n Each instance of the class or object has its own value for each of its properties but it shares the property names or operations with other instances of the class.

18 Object Oriented Programming with C++/ Session 1/ 18 of 50 Method n An action required of an object or entity when represented in a class is called a method. In a polygon class "draw", "erase" and "move" are examples of the methods that are part of the class. n Object is a "black box" which receives and sends messages.

19 Object Oriented Programming with C++/ Session 1/ 19 of 50 Method (Contd.) The black box actually contains code (sequences of computer instructions) and data (information which the instructions operates on). Information passed to and retrieved from each department either by inter-departmental memos or verbal instructions are the messages between objects. These messages can be translated to function calls in a program. Sales Accounts What is the salary of Jack? Jack's salary is $2000

20 Object Oriented Programming with C++/ Session 1/ 20 of 50 Abstraction n Process of examining certain aspects of a problem. n An abstract specification tells us what an object does independent of how it works. n Data Abstraction Process of examining all the available information about an entity to identify information that is relevant to the application.

21 Object Oriented Programming with C++/ Session 1/ 21 of 50 Data Abstraction n Used to identify properties and methods of each object as relevant to the application at hand. n By grouping objects into classes, we are doing data abstraction of a problem. n Common definitions are stored once per class rather than once per instance of the class. n Methods can be written once for a class, so that all the objects in a class benefit from code reuse.

22 Object Oriented Programming with C++/ Session 1/ 22 of 50 Inheritance n It is the property that allows the reuse of an existing class to build a new class. A class of animals can be divided into mammals, amphibians, insects, reptiles, etc. n The superclass is the class from which another class inherits its behaviour. n The class that inherits the properties and methods of another class is called the subclass.

23 Object Oriented Programming with C++/ Session 1/ 23 of 50 Inheritance (Contd.) n Each subclass shares common properties with the class from which it is derived. For example, all vehicles in a class may share similar properties of having wheels and a motor n Subclass may have its own particular characteristics. For example, a bus may have seats for people, while trucks have space for carrying goods.

24 Object Oriented Programming with C++/ Session 1/ 24 of 50 Class Animals and its subclasses Animals InsectsMammals Reptiles Amphibians

25 Object Oriented Programming with C++/ Session 1/ 25 of 50 Encapsulation n Providing access to an object only through its messages, while keeping the details private is called information hiding. An equivalent buzzword is encapsulation. A class has many properties and methods. It is not necessary for a user to have access to all of them. All communication to an object is done via messages. Messages define the interface to the object.

26 Object Oriented Programming with C++/ Session 1/ 26 of 50 Encapsulation (Contd.) n When we properly encapsulate some code we achieve two objectives: We build an impenetrable wall to protect the code from accidental corruption due to the silly little errors that we are all prone to make. We also isolate errors to small sections of code to make them easier to find and fix.

27 Object Oriented Programming with C++/ Session 1/ 27 of 50 Reusability n Object-oriented development allows: Information to be shared within an application Reuse of designs and code on future projects n Programs are broken down into reusable objects. These objects can then be grouped together in different ways to form new programs. n Inheritance also promotes reuse.

28 Object Oriented Programming with C++/ Session 1/ 28 of 50 Felines and Subclasses Felines Actions: Make sounds Eat/drink Hunt prey Cats Actions: Mew Drink milk Hunt mice Lions Actions: Roar Eat flesh Hunt big game

29 Object Oriented Programming with C++/ Session 1/ 29 of 50 Polymorphism n Polymorphism means that the same functions may behave differently on different classes. n The existing object stays the same, and any changes made are only additions to it.

30 Object Oriented Programming with C++/ Session 1/ 30 of 50 Polymorphism n Polymorphism promotes encapsulation. The Draw method is implemented for different cases but how it is to be implemented need not be visible to the user. Class: Shape Methods: Draw Move Initialise Subclasses

31 Object Oriented Programming with C++/ Session 1/ 31 of 50 Class Construct n The general syntax of the class construct is: class user_defined name{ private: data_type members; implementation operations; public: data_type members; implementation operations; };

32 Object Oriented Programming with C++/ Session 1/ 32 of 50 Classes and Structures n A structure contains one or more data items (called members) which are grouped together as a single unit. n Class consists of not only data elements but also functions, which operate on the data elements. n All the variables and the functions declared in a class, whether in the public or private section, are the members of the class. n In a structure all elements are public by default.

33 Object Oriented Programming with C++/ Session 1/ 33 of 50 Public and Private n Class members can be declared in the public or the private sections of a class. n To prevent data from unrestricted access, the data members of a class are normally declared in the private section. n The public part constitutes the interface to objects of the class. n The data members and functions declared in the public section, can be accessed by any function in the outside world (outside of the class).

34 Object Oriented Programming with C++/ Session 1/ 34 of 50 Private and Public (Contd.) n Private data is not available outside the class to any program n Also, private data of other classes is hidden and not available within the functions of this class. Class Data or functions Private Public Not accessible from outside class Accessible from outside class

35 Object Oriented Programming with C++/ Session 1/ 35 of 50 Member functions n In C++, a function declared as a member of a class is called a member function. Member functions are usually put in the public part of the class because they have to be called outside the class either in a program or in a function. n Declaration of a member function must define its return value as well as the list of its arguments. For example, the member function void setdate(int, int, int) has no return value or a void return value, and has three integer arguments.

36 Object Oriented Programming with C++/ Session 1/ 36 of 50 Member functions (Contd.) n Member functions can be more complex as they can have local variable, parameters etc. n Should not have the same name as a data member.

37 Object Oriented Programming with C++/ Session 1/ 37 of 50 Using the class begin program class exampleclass{// specify a class private: object_data is an integer; // class data public: member_function1(parameter1, parameter2…) {assign value to object_data} member_function2(){display data} };

38 Object Oriented Programming with C++/ Session 1/ 38 of 50 Using the class (Contd.) main program{ //define the objects of class exampleclass exampleclass object1,object2; //call member fn to assign value 200 //to object_data object1.member_function1(200); //call member function to display data object1.member_function2(); object2.member_function1(350); object2.member_function2(); }

39 Object Oriented Programming with C++/ Session 1/ 39 of 50 Defining Objects exampleclass object1,object2; defines two objects, object1 and object2, of class exampleclass. n The definition actually creates objects that can be used by the program. n When we define an object, space is set aside for it in memory.

40 Object Oriented Programming with C++/ Session 1/ 40 of 50 Calling member functions We communicate with objects by calling their member functions. object1.member_function1(200); object1.member_function2(); n A member function is always called to act on a specific object, not on the class in general. n Associated with a specific object with the dot operator ( the period).

41 Object Oriented Programming with C++/ Session 1/ 41 of 50 Calling member functions n The general syntax for accessing a member function of a class is class_object.function_member() n The dot operator is called the class member operator.

42 Object Oriented Programming with C++/ Session 1/ 42 of 50 Two objects with different values exampleclass class specifier object_data 200 object_data 200 object1 object_data 350 object2 Objects of the class exampleclass object_data Specifications for exampleclass objects

43 Object Oriented Programming with C++/ Session 1/ 43 of 50 Passing Objects n Objects can be passed to a function and returned back just like normal variables. n The compiler creates another object as a formal variable in the called function. It copies all the data members from the actual object. int function1(exampleclass obj1) {return object_data;} Formal argument

44 Object Oriented Programming with C++/ Session 1/ 44 of 50 Passing Objects (Contd.) n The above function can be invoked using a function call such as, int variable = object1.function1(object2); actual argument n When a member function is called, it is given access to the object of which the function is a member.

45 Object Oriented Programming with C++/ Session 1/ 45 of 50 Returning Objects n A return statement in a function is considered to initialise a variable of the returned type. exampleclass object3 = object1.function1(object2); n Passing and returning of objects is not very efficient since it involves passing and returning a copy of the data members.

46 Object Oriented Programming with C++/ Session 1/ 46 of 50 Object-Oriented Languages n C++, Smalltalk, Eiffel, CLOS, Java n Vary in their support of object-oriented concepts. n No single language that matches all styles and meets all needs.

47 Object Oriented Programming with C++/ Session 1/ 47 of 50 An introduction to C++ n Developed by Bjarne Stroustrup at AT&T Bell Laboratories. n Derived from the C language. n It is compatible with C (it is actually a superset). Most important elements added to C to create C++ are concerned with classes, objects and object-oriented programming.

48 Object Oriented Programming with C++/ Session 1/ 48 of 50 An introduction to C++ (Contd.) n C++ programs are fast and efficient but it sacrifices some flexibility in order to remain efficient. n C++ uses compile-time binding. Provides high run-time efficiency and small code size, but it trades off some of the power to reuse classes.

49 Object Oriented Programming with C++/ Session 1/ 49 of 50 Smalltalk n Pure object-oriented language. n While C++ makes some practical compromises to ensure fast execution and small code size, Smalltalk makes none. n Uses run-time binding, which means that nothing about the type of an object need be known before a Smalltalk program is run. n Significantly faster to develop than C++ programs.

50 Object Oriented Programming with C++/ Session 1/ 50 of 50 Smalltalk n Has a rich class library that can be easily reused via inheritance n Has a dynamic development environment. n It is not explicitly compiled, like C++. n Smalltalk generally takes longer to master than C++. It is syntactically very simple.


Download ppt "Object Oriented Programming with C++/ Session 1/ 1 of 50 Basic Object Oriented Concepts Session 1."

Similar presentations


Ads by Google