C ++ Programming Languages Omid Jafarinezhad Lecturer: Omid Jafarinezhad Fall 2013 Lecture 2 C ++ -overview Department of Computer Engineering 1.

Slides:



Advertisements
Similar presentations
C++ Programming Languages
Advertisements

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.
Pseudocode for Bracket matching Stack mystack; // declare & initialize stack Loop through all characters in program { if (symbol is an ‘opener’) // (,
Data Structures (Second Part) Lecture 3 : Array, Linked List, Stack & Queue Bong-Soo Sohn Assistant Professor School of Computer Science and Engineering.
Lecture 5 Sept 15 Goals: stacks Implementation of stack applications Postfix expression evaluation Convert infix to postfix.
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.
CPS 506 Comparative Programming Languages Abstract Data Type and Encapsulation.
Stacks CS-240 Dick Steflik. Stacks Last In, First Out operation - LIFO As items are added they are chronologically ordered, items are removed in reverse.
Lecture 7 Sept 16 Goals: stacks Implementation of stack applications Postfix expression evaluation Convert infix to postfix.
CS2403 Programming Languages Abstract Data Types and Encapsulation Concepts Chung-Ta King Department of Computer Science National Tsing Hua University.
ISBN Chapter 11 Abstract Data Types and Encapsulation Concepts.
Stack C and Data Structures Baojian Hua
Stacks CS-240 Dick Steflik. Stacks Last In, First Out operation - LIFO As items are added they are chronologically ordered, items are removed in reverse.
Lecture 6 Feb 12 Goals: stacks Implementation of stack applications Postfix expression evaluation Convert infix to postfix.
Introduction to Object-Oriented Programming (OOP)
1 Lecture 24 Abstract Data Types (ADT) –I Overview  What is an Abstract Data type?  What is Stack ADT?  Stack ADT Specifications  Array Implementation.
Stacks CS 308 – Data Structures. What is a stack? It is an ordered group of homogeneous items of elements. Elements are added to and removed from the.
Abstract data types & object-oriented paradigm. Abstraction Abstraction: a view of an entity that includes only the attributes of significance in a particular.
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.
Lecture 9 Concepts of Programming Languages
Object-Oriented programming in C++ Classes as units of encapsulation Information Hiding Inheritance polymorphism and dynamic dispatching Storage management.
1 Genericity Parameterizing by Type. 2 Generic Class One that is parameterized by type  Works when feature semantics is common to a set of types On object.
Object Oriented Data Structures
CS 1031 C++: Object-Oriented Programming Classes and Objects Template classes Operator Overloading Inheritance Polymorphism.
Programming Languages and Paradigms Object-Oriented Programming.
C++ Programming. Table of Contents History What is C++? Development of C++ Standardized C++ What are the features of C++? What is Object Orientation?
Abstract Data Types (ADTs) and data structures: terminology and definitions A type is a collection of values. For example, the boolean type consists of.
What is a Stack? n Logical (or ADT) level: A stack is an ordered group of homogeneous items in which the removal and addition of items can take place only.
1 Stacks – Chapter 3 A stack is a data structure in which all insertions and deletions of entries are made at one end, called the top of the stack. Alternatively,
Chapter 3 Introduction to Collections – Stacks Modified
1 C++ Plus Data Structures Nell Dale Chapter 4 ADTs Stack and Queue Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
C++ Overview Eileen Kraemer. C++ Overview C++ was designed at AT&T Bell Labs by Bjarne Stroustrup in the early 80’s  The original cfront translated C++
Data Structures. The Stack: Definition A stack is an ordered collection of items into which new items may be inserted and from which items may be deleted.
Department of Computer Science and Engineering, HKUST 1 HKUST Summer Programming Course 2008 Class ~ The essence of Object Oriented Programming.
DATA STRUCTURES AND ALGORITHMS Lecture Notes 4 Prepared by İnanç TAHRALI.
Programming Language C++ Xulong Peng CSC415 Programming Languages.
1 Linked Stack Chapter 4. 2 Linked Stack We can implement a stack as a linked list. Same operations. No fixed maximum size. Stack can grow indefinitely.
Programming Languages by Ravi Sethi Chapter 6: Groupings of Data and Operations.
C++ History C++ was designed at AT&T Bell Labs by Bjarne Stroustrup in the early 80's Based on the ‘C’ programming language C++ language standardised in.
Lists, Stacks and Queues in C Yang Zhengwei CSCI2100B Data Structures Tutorial 4.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 6: Stacks Data Abstraction & Problem Solving with C++
Chapter 19: Program Design Copyright © 2008 W. W. Norton & Company. All rights reserved. 1 Chapter 19 Program Design.
Stacks The content for these slides was originally created by Gerard Harrison. Ported to C# by Mike Panitz.
Stacks and Queues Based on D.S. Malik, Java Programming: Program Design Including Data Structures.
Stacks CS 302 – Data Structures Sections 5.1, 5.2, 6.1, 6.5.
Nyhoff, ADTs, Data Structures and Problem Solving with C++, Second Edition, © 2005 Pearson Education, Inc. All rights reserved Stacks.
Kruse/Ryba ch041 Linked Stacks and Queues Pointers and Linked Structures Linked Stacks Linked Stacks with Safeguards Linked Queues Application: Polynomials.
(1) ICS 313: Programming Language Theory Chapter 11: Abstract Data Types (Data Abstraction)
ISBN Chapter 11 Abstract Data Types and Encapsulation Concepts.
1 Classes classes and objects - from object-oriented programming point of view class declaration class class_name{ data members … methods (member functions)
Object-Oriented programming in C++ Classes as units of encapsulation Information Hiding Inheritance polymorphism and dynamic dispatching Storage management.
M180: Data Structures & Algorithms in Java Stacks Arab Open University 1.
1 Data Structures and Algorithms Stack. 2 The Stack ADT Introduction to the Stack data structure Designing a Stack class using dynamic arrays Linked Stacks.
1 Data Structures CSCI 132, Spring 2016 Notes_ 5 Stacks.
Sections 3.4 Formal Specification
Stacks The content for these slides was originally created by Gerard Harrison. Ported to C# by Mike Panitz.
Stacks.
Stack and Queue APURBO DATTA.
C++ History C++ was designed at AT&T Bell Labs by Bjarne Stroustrup in the early 80's Based on the ‘C’ programming language C++ language standardised in.
COMPUTER 2430 Object Oriented Programming and Data Structures I
Some examples.
Lecture 9 Concepts of Programming Languages
Stacks.
CSC 143 Stacks [Chapter 6].
LAB#3 Stacks Nora Albabtin nora albabtin.
EECE.3220 Data Structures Instructor: Dr. Michael Geiger Spring 2019
Abstract Data Types Stacks CSCI 240
5.3 Implementing a Stack Chapter 5 – The Stack.
A type is a collection of values
Lecture 9 Concepts of Programming Languages
Presentation transcript:

C ++ Programming Languages Omid Jafarinezhad Lecturer: Omid Jafarinezhad Fall 2013 Lecture 2 C ++ -overview Department of Computer Engineering 1

Outline C++ Overview C++ Design Goals C++ Enhancements Language Features Not Part of C++ Data Hiding Implementation in C Data Abstraction Implementation in C Data Abstraction Implementation in C++ Exception Handling Implementation in C++

C++ Overview C++ was designed at AT&T Bell Labs – by Bjarne Stroustrup in the early 80’s – nearly 30 years ago! C++ is compatible extension of C that provides: – Stronger type-checking – Support for data abstraction – Support for object-oriented programming – Support for generic programming

C++ Design Goals As with C, run-time efficiency is important – Unlike other languages (e.g., Ada, Java, C#, etc.) complicated run-time libraries and virtual machines have not traditionally been required for C++ Note, that there is no language-specific support for concurrency, persistence, or distribution in C++ Compatibility with C libraries & traditional development tools As close to C as possible, but no closer

C++ Enhancements C++ supports data abstraction & encapsulation – e.g., the class mechanism & name spaces C++ supports object-oriented programming features – e.g., abstract classes, inheritance, & virtual methods C++ supports generic programming – e.g., parameterized types C++ supports sophisticated error handling – e.g., exception handling C++ supports identifying an object’s type at runtime – e.g., Run-Time Type Identification (RTTI)

Language Features Not Part of C++ Concurrency Persistence Garbage Collection Distribution

Stack Example typedef int T; #define MAX_STACK 100 /* const int MAX_STACK = 100; */ T stack[MAX_STACK]; int top = 0; T item = 10; stack[top++] = item; // push... item = stack[--top]; // pop Obviously not very abstract... Obviously not very abstract...

Data Hiding Implementation in C /* File stack.h*/ /* Type of Stack element. */ typedef int T; /* Stack interface. */ int create (int len); int destroy (void); void push (T new_item); void pop (T *old_top); void top (T *cur_top); int is_empty (void); int is_full (void);

Data Hiding Implementation in C /* File stack.c */ #include "stack.h" staticHidden within this file static int top, size; /* Hidden within this file. */ staticHidden within this file static T *stack; /* Hidden within this file. */ int create (int len) { top = 0; size = len; stack = malloc (size * sizeof (T)); return stack == 0 ? -1 : 0; } void destroy (void) { free ((void *) stack); } void push (T item) { stack[top++] = item;} void pop (T *item) { *item = stack[--top]; } void top (T *item) { *item = stack[top - 1]; } int is_empty (void) { return top == 0; } int is_full (void) { return top == size; }

Data Hiding Implementation in C Use case Main problems: create() first & destroy() last! – The programmer must call create() first & destroy() last! only one stack & only one type of stack – There is only one stack & only one type of stack /* File main.c */ #include "stack.h" void main(void) { T i; /* Oops, forgot to call create! */ push (10); /* Oops, forgot to call create! */ push (20); pop (&i); destroy (); }

Data Abstraction Implementation in C /* File stack.h*/ typedef int T; typedef struct { size_t top, size; T *stack; } Stack; int Stack_create (Stack *s, size_t len); void Stack_destroy (Stack *s); void Stack_push (Stack *s, T item); void Stack_pop (Stack *, T *item); /* Must call before pop’ing */ int Stack_is_empty (Stack *); /* Must call before push’ing */ int Stack_is_full (Stack *); /*... */

Data Abstraction Implementation in C /* File stack.c */ #include "stack.h" int Stack_create (Stack *s, size_t len) { s->top = 0; s->size = len; s->stack = malloc (size * sizeof (T)); return s->stack == 0 ? -1 : 0; } void Stack_destroy (Stack *s) { free ((void *) s->stack); s->top = 0; s->size = 0; s->stack = 0; } void Stack_push (Stack *s, T item) { s->stack[s->top++] = item; } void Stack_pop (Stack *s, T *item) { *item = s->stack[--s->top]; } int Stack_is_empty (Stack *s) { return s->top == 0; }

Data Abstraction Implementation in C Use case Main problems: initialization, termination, or assignment  No guaranteed initialization, termination, or assignment only one type of stack  Still only one type of stack supported error handling  No generalized error handling... enforce information hiding  The C compiler does not enforce information hiding e.g., /* Violate abstraction */  s1.top = s2.stack[0]; /* Violate abstraction */ /* Violate abstraction */  s2.size = s3.top_; /* Violate abstraction */ /* File main.c */ #include "stack.h" void main(void) { /* Multiple stacks! */ Stack s1, s2, s3; /* Multiple stacks! */ T item; /* Pop from empty stack */ Stack_pop (&s2, &item); /* Pop from empty stack */ /* Forgot to call Stack_create! */ Stack_push (&s3, 10); /* Disaster due to aliasing!!! */ s2 = s3; /* Disaster due to aliasing!!! */ /* Destroy uninitialized stacks! */ Stack_destroy (&s1); Stack_destroy (&s2); }

Data Abstraction Implementation in C++ We can get encapsulation and more than one stack: /* File stack.h*/ typedef int T; Stack class Stack { public: Stack (size_t size); Stack (const Stack &s); void operator= (const Stack &); ~Stack (void); void push (const T &item); void pop (T &item); bool is_empty (void); bool is_full (void); private: size_t top, size; T *stack; };

Data Abstraction Implementation in C++ /* File stack.cpp */ #include "stack.h" Stack::Stack (size_t s): top(0), size(s), stack(new T[s]) {} Stack::Stack (const Stack &s) : top (s.top), size (s.size), stack (new T[s.size]) { for (size_t i = 0; i < s.size; ++i) stack[i] = s.stack[i]; } void Stack::operator= (const Stack &s) { if (this == &s) return; T *temp_stack = new T[s.size]; delete [] stack; stack = 0; for (size_t i = 0; i < s.size; ++i) temp_stack[i] = s.stack[i]; stack = temp_stack; top = s.top; size = s.size; } Stack::~Stack (void) { delete [] stack; } bool Stack::is_empty (void) { return top == 0; } bool Stack::is_full (void) { return top == size; } void Stack::push (const T &item) { stack[top++] = item; } void Stack::pop (T &item) { item = stack[--top]; }

Data Abstraction Implementation in C++ Use case /* File main.c */ #include "stack.h" void main(void) { Stack s1 (1), s2 (100); T item; if (!s1.is_full ()) s1.push (473); if (!s2.is_full ()) s2.push (2112); if (!s2.is_empty ()) s2.pop (item); // Access violation caught at compile-time! s2.top = 10; // Termination is handled automatically. }

Benefits of C++ DAT Data hiding & data abstraction, e.g., Stack s1 (200); // Error flagged by compiler! s1.top = 10 // Error flagged by compiler! The ability to declare multiple stack objects Stack s1 (10), s2 (20), s3 (30); Automatic initialization & termination { Stack s1 (1000); // constructor called automatically. //... // Destructor called automatically }

Drawbacks of C++ DAT Error handling is obtrusive – use exception handling to solve this (but be careful)! The example is limited to a single type of stack element (int in this case) – use parameterized types to remove this limitation Function call overhead – use inline functions to remove this overhead

Exception Handling Implementation in C++ /* File stack.h*/ typedef int T; Stack class Stack { public: /*... */ class Underflow { /*... */ }; // WARNING: be cautious when using /*... */ class Overflow { /*... */ }; // exception specifiers... Stack (size_t size); Stack (const Stack &s); void operator= (const Stack &); ~Stack (void); throw (Overflow); void push (const T &item) throw (Overflow); throw (Underflow); void pop (T &item) throw (Underflow); bool is_empty (void); bool is_full (void); private: size_t top, size; T *stack; };

Exception Handling Implementation in C++ /* File stack.cpp */ #include "stack.h" Stack::Stack (size_t s): top(0), size(s), stack(new T[s]) {} … throw (Stack::Overflow) void Stack::push (const T &item) throw (Stack::Overflow) { throw if (is_full ()) throw Stack::Overflow (); stack[top++] = item; } throw(Stack::Underflow) void Stack::pop (T &item) throw (Stack::Underflow) { throw if (is_empty ()) throw Stack::Underflow (); item = stack[--top]; } …

Exception Handling Implementation in C++ Use case /* File main.c */ #include "stack.h" void main(void) { Stack s1 (1), s2 (100); try { T item; s1.push (473); s1.push (42); // Exception, full stack! s2.pop (item); // Exception, empty stack! s2.top = 10; // Access violation caught! } /* Handle underflow... */ catch (Stack::Underflow) { /* Handle underflow... */ } /* Handle overflow... */ catch (Stack::Overflow) { /* Handle overflow... */ } /* Catch anything else... */ catch (...) { /* Catch anything else... */ throw; } }