C++: Object-Oriented Programming

Slides:



Advertisements
Similar presentations
The C ++ Language BY Shery khan. The C++ Language Bjarne Stroupstrup, the language’s creator C++ was designed to provide Simula’s facilities for program.
Advertisements

Object-Oriented programming in C++ Classes as units of encapsulation Information Hiding Inheritance polymorphism and dynamic dispatching Storage management.
Contents o Introduction o Characteristics of Constructor. o Types of constructor. - Default Constructor - Parameterized Constructor - Copy Constructor.
1 Stacks Chapter 4. 2 Objectives You will be able to: Describe a stack as an ADT. Build a dynamic-array-based implementation of stacks. Build a linked-list.
Abstract Data Types Data abstraction, or abstract data types, is a programming methodology where one defines not only the data structure to be used, but.
Lecture 6 Feb 12 Goals: stacks Implementation of stack applications Postfix expression evaluation Convert infix to postfix.
Chapter Objectives You should be able to describe: Object-Based Programming Classes Constructors Examples Common Programming Errors.
Stacks  Standard operations: IsEmpty … return true iff stack is empty Top … return top element of stack Push … add an element to the top of the stack.
Object Oriented Data Structures
Introduction to C++. Overview C++? What are references Object orientation Classes Access specifiers Constructor/destructor Interface-implementation separation.
CS 1031 C++: Object-Oriented Programming Classes and Objects Template classes Operator Overloading Inheritance Polymorphism.
CS212: Object Oriented Analysis and Design Lecture 6: Friends, Constructor and destructors.
Stack and Heap Memory Stack resident variables include:
Stacks. A stack is a data structure that holds a sequence of elements and stores and retrieves items in a last-in first- out manner (LIFO). This means.
Programming Languages by Ravi Sethi Chapter 6: Groupings of Data and Operations.
Week 14 - Monday.  What did we talk about last time?  Introduction to C++  Input and output  Functions  Overloadable  Default parameters  Pass.
Copyright 2004 Scott/Jones Publishing Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 7 Structured Data and Classes.
CS 1031 Final Touches: Multiple-File Programs, Inheritance, Templates Multiple-File Programs –header files –implementation files –main-program file) Inheritance.
 2000 Deitel & Associates, Inc. All rights reserved. Chapter 12 - Templates Outline 12.1Introduction 12.2Function Templates 12.3Overloading Template Functions.
ISBN Chapter 11 Abstract Data Types and Encapsulation Concepts.
OOP using C Abstract data types How to accomplish the task??? Requirements Details Input, output, process Specify each task in terms of input.
Classes, Interfaces and Packages
1 Classes classes and objects - from object-oriented programming point of view class declaration class class_name{ data members … methods (member functions)
1 Introduction to Object Oriented Programming Chapter 10.
1 Stacks Abstract Data Types (ADTs) Stacks Application to the analysis of a time series Java implementation of a stack Interfaces and exceptions.
CSE 332: C++ Exceptions Motivation for C++ Exceptions Void Number:: operator/= (const double denom) { if (denom == 0.0) { // what to do here? } m_value.
C vs C++. Oops Advantages simplicity: software objects model real world objects, so the complexity is reduced and the program structure is very clear;
Chapter 2 Objects and Classes
Lecture 3 (UNIT -1) SUNIL KUMAR CIT-UPES.
C++: Object-Oriented Programming
Chapter 22 - C++ Templates
Popping Items Off a Stack Using a Function Lesson xx
Programming with ANSI C ++
More on Linked Lists, Stacks, and Queues
Abstract Data Types and Encapsulation Concepts
Chapter 18 Introduction to Custom Templates
Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes
Chapter 14 Templates C++ How to Program, 8/e
Introduction to Custom Templates
Dr. Bernard Chen Ph.D. University of Central Arkansas
Review: Two Programming Paradigms
This technique is Called “Divide and Conquer”.
Stacks.
CS212: Object Oriented Analysis and Design
Stack.
Stack Data Structure, Reverse Polish Notation, Homework 7
Pointers and Dynamic Variables
group work #hifiTeam
Lecture 4-7 Classes and Objects
Lecture 9 Concepts of Programming Languages
Introduction to Classes
Popping Items Off a Stack Lesson xx
Abstract Data Types and Encapsulation Concepts
Chapter 11 - Templates Outline Introduction Function Templates Overloading Function Templates Class Templates Class.
CONSTRUCTORS AND DESRUCTORS
Dr. Bhargavi Dept of CS CHRIST
Classes and Objects.
Stacks Abstract Data Types (ADTs) Stacks
Programming Assignment 1
Chapter 11 - Templates Outline Introduction Function Templates Overloading Function Templates Class Templates Class.
Class and Objects In a class, all the functions that operate on the data structure are grouped together in one place along with the data Like a struct.
Java Programming Language
Chapter 11 - Templates Outline Introduction Function Templates Overloading Function Templates Class Templates Class.
Chapter 22 - C++ Templates
Chapter 22 - C++ Templates
EECE.3220 Data Structures Instructor: Dr. Michael Geiger Spring 2019
Instructor: Dr. Michael Geiger Spring 2019 Lecture 23: Exam 2 Preview
Chapter 11 - Templates Outline Introduction Function Templates Overloading Function Templates Class Templates Class.
Lecture 9 Concepts of Programming Languages
Introduction to Classes and Objects
Presentation transcript:

C++: Object-Oriented Programming Classes and Objects Template classes Operator Overloading Inheritance Polymorphism CS 103

The Evolution of The Notion of Object In C, a struct models what a thing has/is (i.e., the data, also called the characteristics), but not what it does (its behavior, represented by functions). The functions are outside and separate from structs. In C++, the characteristics and behavior are integrated into a single structure, called object. The data type of an object is the class of the object The packaging of the data and the functions into a class type is called data encapsulation. CS 103

Example: A Basic Stack (Using C structs) struct stack { int data[100]; int top; } S; int isEmpty(stack S){ return S.top==0?1:0; } int pop(stack S){ assert(top>0); return S.data[--S.top]; void push(stack S, int a){ assert(top<100); S.data[top]=a; S.top++; CS 103

Problems with structs Need a different struct for each different data type to be pushed onto or popped off the stack Overflow (although it can be fixed in C, using dynamic data allocation) The overall structure does not convey a tight coupling between the stack data and the stack operations CS 103

How struct Becomes in C++ (1st step: put the functions inside ) struct stack { int data[100]; int top; void push(int a); // implement outside int pop(void); // implement outside bool isEmpty(void); // implement outside } ; CS 103

2nd Step: Implement the Functions void stack::push(int a){ assert(top<100); data[top]=a; top++; } bool stack::isEmpty( ){ return top==0?true:false; int stack:: pop( ){ assert(top>0); int x=data[--top]; return x; CS 103

How to Use the New Data Type Statements Outcome stack S; S.top=0; S.push(12); S.push(20); S.push(30); int x=S.pop(); cout<<x<<endl; cout<S.pop()<<endl; cout<S.isEmpty()<<endl; cout<S. isEmpty()<<endl 30 20 false 12 true CS 103

Definition of Classes and Objects (revisited) A new data type defined with struct (where the data and functions are together) is called a class. Example: the data type stack is a class Indeed, C++ has a new reserved word, class, that is synonymous to struct (except for a minor difference explained later) Any variable of the type defined by struct or class is called an object or instance of that class Example: In the declaration: stack S;, S is an object of the stack class. CS 103

Definition of Members The declared variables inside structs are called the data fields in C. In C++, the declared variables and functions inside structs/classes are called members: member variables member functions (also called methods) CS 103

Data Hiding: Context S.top -= 3; Note that users of a stack object can access directly the members data[] and top For example, a user can do: But notice that the 3 stack operations are all the users need. They do need to access top directly Also, this free access can cause problems: If a user is not careful or is malicious, such a direct access to S.top can invalidate the stack operations’ outcome It also limits the implementer from evolving/modifying the implementation of the data type S.top -= 3; CS 103

Data Hiding: Private and Public sections C++, and other object-oriented programming languages, allow the programmer to designate certain members of a class as private, and other members as public. Private members cannot be accessed from outside the class, while public members can Private members are hidden (thus the term data hiding) CS 103

The Stack with Data Hiding struct stack { // or class stack { private : int data[100]; int top; public: void push(int a); int pop(void); bool isEmpty(void); } ; Now, observe which access is legal and which is illegal (will not compile): stack S; S.top = 10; //illegal S.data[17]=22; // illegal S.push(5); //legal S.isEmpty(); //legal S.pop(); // legal CS 103

Initialization of Variables In C, initialization of variables is left to the user. For example, the member “top” of stack S is not initialized. All calls to push() or pop() cause errors C++ considers initialization too important to leave to the users’ unreliable memory to remember to initialize. Even if users remember, observe that: In the definition of stack, it is illegal to write: int top=0; If top is private, it is illegal to write: stack S; S.top = 0; And we don’t want to have top public (as we saw) CS 103

Initialization and Constructors C++ requires that every class have a constructor The constructor is responsible for initializing objects automatically whenever they are declared. The programmer has the option to provide his/her own constructors, which get called whenever a new object is declared Otherwise, the compiler provides a default constructor But what is a constructor? CS 103

Constructors (Contd.) The constructor is like any other method (i.e., member function) in that it takes arguments it can be overloaded its arguments can be defaulted But with one big difference: It has no return value, not even void. One other very important characteristic: the constructor’s name is the same as the class name CS 103

Constructor of the Stack Class class stack { private : int data[100]; int top; public: stack(); // the constructor void push(int a); …// the other functions } ; // constructor: initializes // top to 0. stack::stack(){ top=0; } // the implementation of // the other functions is // the same as before CS 103

How to Create Objects Using Constructors Example: stack S(); This creates S as a stack, and initializes its member “top” to 0. Now, we can start to call S.push(int), S.pop(), and S.isEmpty() without problems. CS 103

Constructors with Arguments & Constructor Overloading Suppose that when you create a stack, you want to “stuff” it with several specified values at the outset This can be done by writing a constructor that take the specified values as input, and initializes the data[ ] to those values. This is shown next. CS 103

class stack { private : int data[100]; int top; public: stack(); stack(int a[], int n); //other functions }; //constructor: initializes data to a stack::stack(int a[],int n){ for(top=0;top<n && top<100; top++) data[top]=a[top]; } // constructor: initializes top to 0. stack::stack(){ top=0; CS 103

Stack Overflow and Solution So far, the stack example we have cannot hold more than 100 values. If we push more than that many, the stack overflows. To overcome this limit, we can use dynamic arrays (with new), and maintain a capacity indicator This is implemented next CS 103

private : class stack { //constructor: sets capacity to int *dataptr; int top; int capacity; public: stack(int cap=100); stack(int a[], int n); int getCapacity() { return capacity;} void push(int b); int pop(); bool isEmpty() { return top==0;} }; //constructor: sets capacity to // max(2n,100); stores a[] in stack stack::stack(int a[],int n){ capacity = (2*n>100)?2*n:100; dataptr = new int[capacity]; for(top=0;top<n;top++) dataptr[top]=a[top]; } // constructor: initializes top to 0, // and capacity to cap if provided // & >0, otherwise to 100. stack::stack(int cap){ top=0; capacity = (cap>0)?cap:100; CS 103

void stack::push(int b){ if (top < capacity) dataptr[top++]=b; else{ // double the capacity, copy // current contents to new array, // delete old array, and push b on // top of the new array capacity *=2; int *newptr=new int [capacity]; for(int k=0;k<capacity/2;k++) newptr[k]=dataptr[k]; delete [] dataptr; dataptr = newptr; } Inline Functions: Note that the methods isEmpty() and getCapacity() are implemented inside the class. Such functions are called inline functions. Inline functions should be limited to very simple implementations. CS 103

One Last Elaboration on the Stack Class: Generic Data Type The stack class allows us to push integers only Clearly, one may need a stack for floats or doubles or chars or even user-defined types Sure, one can design a different stack class for each different data type (cut and paste, and change the data type) But that is cumbersome, error-prone, and inefficient when it comes to making changes A better alternative: class templates CS 103

Class Templates Much as function templates allow argument types to be parameterized, class templates allow us to parameterize the types of: member variables arguments of member functions & constructors return values of member functions The syntax is similar but somewhat more cumbersome CS 103

Class Templates Syntax For template class declaration: For the implementation of the methods outside the class, the syntax is: For the implementation of the constructors outside the class, the syntax is: template<class T> class_declaration; template<class T> return_type className<T>::methodName(parameter-list){ ……} template<class T> className<T>:: className(parameter-list){……} CS 103

Stack as a Template Class template <class T> class stack { private : T *dataptr; int top; int capacity; public: stack(int cap=100); // as before stack(T a[], int n); // new int getCapacity() {return capacity;} void push(T b); T pop() {assert(top>0); return dataptr[--top];} bool isEmpty() {return top==0;} }; CS 103

//constructor: sets capacity to max(2n,100). // It then initializes stack to a[]. template<class T> stack<T>::stack(T a[],int n){ capacity = (2*n>100)?2*n:100; dataptr = new T[capacity]; for(top=0;top<n;top++) dataptr[top]=a[top]; } // constructor: initializes top to 0, and capacity to cap // if provided & >0, otherwise to 100. template<class T> stack<T>::stack(int cap){ top=0; capacity = (cap>0)?cap:100; CS 103

template<class T> void stack<T>::push(T b){ if (top < capacity) dataptr[top++]=b; else{ // double the capacity, copy // current contents to new array, // delete old array, and push b on // top of the new array capacity *=2; T *newptr=new T[capacity]; for(int k=0;k<capacity/2;k++) newptr[k]=dataptr[k]; delete [] dataptr; dataptr = newptr; } CS 103

A Complete Program Using Template Stacks #include <cstdlib> #include <iostream> using namespace std; // template stack definition goes here int main(int argc, char *argv[]){ stack<int> intS(5); // a stack of integers cout<<"intS capacity after construction = "<<intS.getCapacity()<<endl; int x[]={2,3,7,8,-10,14,5}; for (int i=0;i<7;i++) intS.push(x[i]); cout<<"intS capacity after pushing 7 elements="<< intS.getCapacity(); cout<<“\nEmptying intS: "; while (!intS.isEmpty()) cout<<intS.pop()<<"; "; cout<<endl; CS 103

stack<char *> stringS(5); // a stack of strings stringS.push("hi"); stringS.push("there"); cout<<"Emptying stringS: "; while (!stringS.isEmpty()) cout<<stringS.pop()<<"; "; cout<<endl; double y[]={3.14,9.8,1.42,12}; stack<double> doubleS(y,4); // a stack of doubles cout<<"doubleS capacity="<<doubleS.getCapacity()<<endl; cout<<"Emptying doubleS: "; while (!doubleS.isEmpty()) cout<<doubleS.pop()<<"; "; } CS 103

The Output of the Last Program intS capacity after construction = 5 intS capacity after pushing 7 elements=10 Emptying intS: 5; 14; -10; 8; 7; 3; 2; Emptying stringS: there; hi; doubleS capacity=100 Emptying doubleS: 12; 1.42; 9.8; 3.14; CS 103