C++ TEMPLATES. Templates are the foundation of generic programming, which involves writing code in a way that is independent of any particular type.

Similar documents
C++ Exception Handling 1

UNIT III. C++ Programming Advanced Features. Abstract Class

UNIVERSITI TEKNIKAL MALAYSIA MELAKA FACULTY INFORMATION TECHNOLOGY AND COMMUNICATION (FTMK) BITE 1513 GAME PROGRAMMING I.

DE70/DC56/DE122/DC106 OBJECT ORIENTED PROGRAMMING WITH C++ DEC 2015

CS 240 Data Structure Spring 2018 Exam III 04/25/2018

This can be thrown by dynamic_cast. This is useful device to handle unexpected exceptions in a C++ program

Object-Oriented Programming (OOP) Fundamental Principles of OOP

Lecture on pointers, references, and arrays and vectors

21. Exceptions. Advanced Concepts: // exceptions #include <iostream> using namespace std;

S.E Computer (First Semester) Examination 2016 OBJECT ORIENTED PROGRAMMING (2015 Pattern) Nov / Dec 2016 Time : 2 Hours Maximum Marks : 50

! Errors can be dealt with at place error occurs

Inheritance

CPSC 427: Object-Oriented Programming

CPSC 427: Object-Oriented Programming

IS 0020 Program Design and Software Tools

THE STANDARD TEMPLATE LIBRARY (STL) Week 6 BITE 1513 Computer Game Programming

Function Templates. Consider the following function:

Friend Functions, Inheritance

CS 162, Lecture 25: Exam II Review. 30 May 2018

C++ Quick Guide. Advertisements

Lecture 10. To use try, throw, and catch Constructors and destructors Standard exception hierarchy new failures

CMSC 202 Final May 19, Name: UserID: (Circle your section) Section: 101 Tuesday 11: Thursday 11:30

Introduction to C++ Systems Programming

Exceptions. Why Exception Handling?

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI

Templates and Exception Handling. Difference between Function template and class template

Exception Handling Pearson Education, Inc. All rights reserved.

Programming in C++: Assignment Week 8

COEN244: Class & function templates

Intermediate Programming, Spring 2017*

Exception Handling in C++

1 Introduction to C++ C++ basics, simple IO, and error handling

Introduction. Common examples of exceptions

OBJECT ORIENTED PROGRAMMING. Ms. Ajeta Nandal C.R.Polytechnic,Rohtak

Variables. Data Types.

Chapter 15 - C++ As A "Better C"

VALLIAMMAI ENGINEERING COLLEGE

CS 247: Software Engineering Principles. C++ Templates. Reading: Eckel, Vol. 2 Ch. 5 Templates in Depth. U Waterloo CS247 (Spring 2017) p.

Throwing exceptions 02/12/2018. Throwing objects. Exceptions

C++ Important Questions with Answers

C++ Templates. David Camp

A A B U n i v e r s i t y

Exception Handling Pearson Education, Inc. All rights reserved.

mywbut.com Exception Handling

Exceptions. CandC++ 7. Exceptions Templates. Throwing exceptions. Conveying information

(heavily based on last year s notes (Andrew Moore) with thanks to Alastair R. Beresford. 7. Exceptions Templates 2/1. Throwing exceptions 14 }

Solution Set. 1. Attempt any three of the following: 15 a. What is object oriented programming? State its applications.

C and C++ 7. Exceptions Templates. Alan Mycroft

Cpt S 122 Data Structures. Course Review Midterm Exam # 2

COMP6771 Advanced C++ Programming

CMSC 341 Lecture 6 Templates, Stacks & Queues. Based on slides by Shawn Lupoli & Katherine Gibson at UMBC

OOPS Viva Questions. Object is termed as an instance of a class, and it has its own state, behavior and identity.

Templates (again) Professor Hugh C. Lauer CS-2303, System Programming Concepts

Absolute C++ Walter Savitch

C++ Namespaces, Exceptions

COMP6771 Advanced C++ Programming

PHY4321 Summary Notes

CMSC 341 Lecture 6 STL, Stacks, & Queues. Based on slides by Lupoli, Dixon & Gibson at UMBC

2. How many runtime error messages associated with exception? a) 2 b) 4 c) 5 d) infinite

CS201 - Introduction to Programming Glossary By

Interview Questions of C++

Jayaram college of Engineering and Technology, Pagalavadi. CS2203 Object Oriented Programming Question Bank Prepared By: S.Gopalakrishnan, Lecturer/IT

Containers in C++ and Java

Homework 4. Any questions?

Templating functions. Comp Sci 1570 Introduction to C++ Administrative notes. Review. Templates. Compiler processing. Functions Overloading

JAYARAM COLLEGE OF ENGINEERING AND TECHNOLOGY Pagalavadi, Tiruchirappalli (An approved by AICTE and Affiliated to Anna University)

CS OBJECT ORIENTED PROGRAMMING

Midterm Review. PIC 10B Spring 2018

Chapter 12 - Templates

1. The term STL stands for?

C++ PROGRAMMING LANGUAGE: DYNAMIC MEMORY ALLOCATION AND EXCEPTION IN C++. CAAM 519, CHAPTER 15

Dynamic Data Structures

Short Notes of CS201

TEMPLATES AND EXCEPTION HANDLING

Cpt S 122 Data Structures. Course Review FINAL. Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University

CSCI 102L - Data Structures Midterm Exam #1 Fall 2011

Object-Oriented Programming for Scientific Computing

CS102 C++ Exception Handling & Namespaces

Inheritance, and Polymorphism.

Functions. Functions in C++ Calling a function? What you should know? Function return types. Parameter Type-Checking. Defining a function

Templates and Vectors

Introduction to C++ Professor Hugh C. Lauer CS-2303, System Programming Concepts

CSC 330 Object-Oriented Programming. Exception Handling CSC 330

C++_ MARKS 40 MIN

I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination. June, 2015 BCS-031 : PROGRAMMING IN C ++

More on Templates. Shahram Rahatlou. Corso di Programmazione++

STL Quick Reference for CS 241

COMP 2355 Introduction to Systems Programming

Object-Oriented Programming

G Programming Languages - Fall 2012

ECE 2400 Computer Systems Programming Fall 2017 Topic 15: C++ Templates

CS

Programming in C++: Assignment Week 8

Chapter 16: Exceptions, Templates, and the Standard Template Library (STL)

Introduction to Programming

CS11 Introduction to C++ Fall Lecture 6

Polymorphism 02/12/2018. Member functions. Member functions

Problem Solving with C++

Chapter 1: Object-Oriented Programming Using C++

05-01 Discussion Notes

Transcription:

C++ TEMPLATES http://www.tutorialspoint.com/cplusplus/cpp_templates.htm Copyright tutorialspoint.com Templates are the foundation of generic programming, which involves writing code in a way that is independent of any particular type. A template is a blueprint or formula for creating a generic class or a function. The library containers like iterators and algorithms are examples of generic programming and have been developed using template concept. There is a single definition of each container, such as vector, but we can define many different kinds of vectors for example, vector <int> or vector <string>. You can use templates to define functions as well as classes, let us see how do they work: Function Template: The general form of a template function definition is shown here: template <class type> ret-type func-name(parameter list) // body of function Here, type is a placeholder name for a data type used by the function. This name can be used within the function definition. The following is the example of a function template that returns the maximum of two values: #include <string> template <typename T> inline T const& Max (T const& a, T const& b) return a < b? b:a; int main () int i = 39; int j = 20; cout << "Max(i, j): " << Max(i, j) << endl; double f1 = 13.5; double f2 = 20.7; cout << "Max(f1, f2): " << Max(f1, f2) << endl; string s1 = "Hello"; string s2 = "World"; cout << "Max(s1, s2): " << Max(s1, s2) << endl; return 0; If we compile and run above code, this would produce the following result: Max(i, j): 39 Max(f1, f2): 20.7 Max(s1, s2): World

Class Template: Just as we can define function templates, we can also define class templates. The general form of a generic class declaration is shown here: template <class type> class class-name... Here, type is the placeholder type name, which will be specified when a class is instantiated. You can define more than one generic data type by using a comma-separated list. Following is the example to define class Stack<> and implement generic methods to push and pop the elements from the stack: #include <vector> #include <cstdlib> #include <string> #include <stdexcept> template <class T> class Stack private: vector<t> elems; // elements public: void push(t const&); // push element void pop(); // pop element T top() const; // return top element bool empty() const // return true if empty. return elems.empty(); ; template <class T> void Stack<T>::push (T const& elem) // append copy of passed element elems.push_back(elem); template <class T> void Stack<T>::pop () if (elems.empty()) throw out_of_range("stack<>::pop(): empty stack"); // remove last element elems.pop_back(); template <class T> T Stack<T>::top () const if (elems.empty()) throw out_of_range("stack<>::top(): empty stack"); // return copy of last element return elems.back(); int main()

try Stack<int> intstack; // stack of ints Stack<string> stringstack; // stack of strings // manipulate int stack intstack.push(7); cout << intstack.top() <<endl; // manipulate string stack stringstack.push("hello"); cout << stringstack.top() << std::endl; stringstack.pop(); stringstack.pop(); catch (exception const& ex) cerr << "Exception: " << ex.what() <<endl; return -1; If we compile and run above code, this would produce the following result: 7 hello Exception: Stack<>::pop(): empty stack

C++ STL TUTORIAL http://www.tutorialspoint.com/cplusplus/cpp_stl_tutorial.htm Copyright tutorialspoint.com Hope you already understand the concept of C++ Template which we already have discussed in one of the chapters. The C++ STL StandardTemplateLibrary is a powerful set of C++ template classes to provides general-purpose templatized classes and functions that implement many popular and commonly used algorithms and data structures like vectors, lists, queues, and stacks. At the core of the C++ Standard Template Library are following three well-structured components: Component Containers Algorithms Iterators Description Containers are used to manage collections of objects of a certain kind. There are several different types of containers like deque, list, vector, map etc. Algorithms act on containers. They provide the means by which you will perform initialization, sorting, searching, and transforming of the contents of containers. Iterators are used to step through the elements of collections of objects. These collections may be containers or subsets of containers. We will discuss about all the three C++ STL components in next chapter while discussing C++ Standard Library. For now, keep in mind that all the three components have a rich set of predefined functions which help us in doing complicated tasks in very easy fashion. Let us take the following program demonstrates the vector container ac + + StandardTemplate which is similar to an array with an exception that it automatically handles its own storage requirements in case it grows: #include <vector> int main() // create a vector to store int vector<int> vec; int i; // display the original size of vec cout << "vector size = " << vec.size() << endl; // push 5 values into the vector for(i = 0; i < 5; i++) vec.push_back(i); // display extended size of vec cout << "extended vector size = " << vec.size() << endl; // access 5 values from the vector for(i = 0; i < 5; i++) cout << "value of vec [" << i << "] = " << vec[i] << endl; // use iterator to access the values vector<int>::iterator v = vec.begin(); while( v!= vec.end()) cout << "value of v = " << * v << endl; v++;

return 0; When the above code is compiled and executed, it produces the following result: vector size = 0 extended vector size = 5 value of vec [0] = 0 value of vec [1] = 1 value of vec [2] = 2 value of vec [3] = 3 value of vec [4] = 4 value of v = 0 value of v = 1 value of v = 2 value of v = 3 value of v = 4 Here are following points to be noted related to various functions we used in the above example: The push_back member function inserts value at the end of the vector, expanding its size as needed. The size function displays the size of the vector. The function begin returns an iterator to the start of the vector. The function end returns an iterator to the end of the vector. Loading [MathJax]/jax/output/HTML-CSS/jax.js

C++ STANDARD LIBRARY http://www.tutorialspoint.com/cplusplus/cpp_standard_library.htm Copyright tutorialspoint.com The C++ Standard Library can be categorized into two parts: The Standard Function Library: This library consists of general-purpose,stand-alone functions that are not part of any class. The function library is inherited from C. The Object Oriented Class Library: This is a collection of classes and associated functions. Standard C++ Library incorporates all the Standard C libraries also, with small additions and changes to support type safety. The Standard Function Library: The standard function library is divided into the following categories: I/O String and character handling Mathematical Time, date, and localization Dynamic allocation Miscellaneous Wide-character functions The Object Oriented Class Library: Standard C++ Object Oriented Library defines an extensive set of classes that provide support for a number of common activities, including I/O, strings, and numeric processing. This library includes the following: The Standard C++ I/O Classes The String Class The Numeric Classes The STL Container Classes The STL Algorithms The STL Function Objects The STL Iterators The STL Allocators The Localization library Exception Handling Classes Miscellaneous Support Library

C++ INHERITANCE http://www.tutorialspoint.com/cplusplus/cpp_inheritance.htm Copyright tutorialspoint.com 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, the programmer 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. 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 classes. A class derivation list names one or more base classes and has the form: class derived-class: access-specifier base-class 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. Consider a base class Shape and its derived class Rectangle as follows: // Base class class Shape public: void setwidth(int w) width = w; void setheight(int h) height = h; protected: int width; int height; ; // 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 the following result: Total area: 35 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. We can summarize the different access types according to who can access them in the following way: Access 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: Constructors, destructors and copy constructors of the base class. Overloaded operators of the base class. The friend functions of the base class. 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: 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. 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. Multiple Inheritances: A C++ class can inherit members from more than one class and here is the extended syntax: class derived-class: access basea, access baseb...

Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following example: // Base class Shape class Shape public: void setwidth(int w) width = w; void setheight(int h) height = h; protected: int width; int height; ; // Base class PaintCost class PaintCost public: int getcost(int area) return area * 70; ; // Derived class class Rectangle: public Shape, public PaintCost public: int getarea() return (width * height); ; int main(void) Rectangle Rect; int area; Rect.setWidth(5); Rect.setHeight(7); area = Rect.getArea(); // Print the area of the object. cout << "Total area: " << Rect.getArea() << endl; // Print the total cost of painting cout << "Total paint cost: $" << Rect.getCost(area) << endl; return 0; When the above code is compiled and executed, it produces the following result: Total area: 35 Total paint cost: $2450 Loading [MathJax]/jax/output/HTML-CSS/jax.js

C++ EXCEPTION HANDLING http://www.tutorialspoint.com/cplusplus/cpp_exceptions_handling.htm Copyright tutorialspoint.com An exception is a problem that arises during the execution of a program. A C++ exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero. Exceptions provide a way to transfer control from one part of a program to another. C++ exception handling is built upon three keywords: try, catch, and throw. throw: A program throws an exception when a problem shows up. This is done using a throw keyword. catch: A program catches an exception with an exception handler at the place in a program where you want to handle the problem. The catch keyword indicates the catching of an exception. try: A try block identifies a block of code for which particular exceptions will be activated. It's followed by one or more catch blocks. Assuming a block will raise an exception, a method catches an exception using a combination of the try and catch keywords. A try/catch block is placed around the code that might generate an exception. Code within a try/catch block is referred to as protected code, and the syntax for using try/catch looks like the following: try // protected code catch( ExceptionName e1 ) // catch block catch( ExceptionName e2 ) // catch block catch( ExceptionName en ) // catch block You can list down multiple catch statements to catch different type of exceptions in case your try block raises more than one exception in different situations. Throwing Exceptions: Exceptions can be thrown anywhere within a code block using throw statements. The operand of the throw statements determines a type for the exception and can be any expression and the type of the result of the expression determines the type of exception thrown. Following is an example of throwing an exception when dividing by zero condition occurs: double division(int a, int b) if( b == 0 ) throw "Division by zero condition!"; return (a/b); Catching Exceptions: The catch block following the try block catches any exception. You can specify what type of exception you want to catch and this is determined by the exception declaration that appears in parentheses following the keyword catch.

try // protected code catch( ExceptionName e ) // code to handle ExceptionName exception Above code will catch an exception of ExceptionName type. If you want to specify that a catch block should handle any type of exception that is thrown in a try block, you must put an ellipsis,..., between the parentheses enclosing the exception declaration as follows: try // protected code catch(...) // code to handle any exception The following is an example, which throws a division by zero exception and we catch it in catch block. double division(int a, int b) if( b == 0 ) throw "Division by zero condition!"; return (a/b); int main () int x = 50; int y = 0; double z = 0; try z = division(x, y); cout << z << endl; catch (const char* msg) cerr << msg << endl; return 0; Because we are raising an exception of type const char*, so while catching this exception, we have to use const char* in catch block. If we compile and run above code, this would produce the following result: Division by zero condition! C++ Standard Exceptions: C++ provides a list of standard exceptions defined in <exception> which we can use in our programs. These are arranged in a parent-child class hierarchy shown below:

Here is the small description of each exception mentioned in the above hierarchy: Exception std::exception std::bad_alloc std::bad_cast std::bad_exception std::bad_typeid std::logic_error std::domain_error std::invalid_argument std::length_error std::out_of_range std::runtime_error std::overflow_error std::range_error std::underflow_error Description An exception and parent class of all the standard C++ exceptions. This can be thrown by new. This can be thrown by dynamic_cast. This is useful device to handle unexpected exceptions in a C++ program This can be thrown by typeid. An exception that theoretically can be detected by reading the code. This is an exception thrown when a mathematically invalid domain is used This is thrown due to invalid arguments. This is thrown when a too big std::string is created This can be thrown by the at method from for example a std::vector and std::bitset<>::operator[]. An exception that theoretically can not be detected by reading the code. This is thrown if a mathematical overflow occurs. This is occured when you try to store a value which is out of range. This is thrown if a mathematical underflow occurs.

Define New Exceptions: You can define your own exceptions by inheriting and overriding exception class functionality. Following is the example, which shows how you can use std::exception class to implement your own exception in standard way: #include <exception> struct MyException : public exception const char * what () const throw () return "C++ Exception"; ; int main() try throw MyException(); catch(myexception& e) std::cout << "MyException caught" << std::endl; std::cout << e.what() << std::endl; catch(std::exception& e) //Other errors This would produce the following result: MyException caught C++ Exception Here, what is a public method provided by exception class and it has been overridden by all the child exception classes. This returns the cause of an exception. Loading [MathJax]/jax/output/HTML-CSS/jax.js