SlideShare une entreprise Scribd logo
1  sur  36
1
2
3
Template

concept can be use in two
different concepts
i.
Function template
ii.
Class template

4
The

body of the function template is
written in the same way in each case
as function is written but the difference
is that they can handle arguments and
return value of different types.

5
Function Template

Template function:
template <class T>
void get(T a)
{
cout <<" value : "<<a;
cin.get();
}
void main()
{
int a=5;
float b=4.3;
get(a);
get(b);


}



Simple function:

void get(int a)
{
cout <<" value : "<<a;
cin.get();
getch();
}
void main()
{
int a=5;
float b=4.3;
get(a);
get(b);
}

6
Continued…



Function Template:



Simple Function

7
template <class T>
T square(T value)
{
return value*value;
}
int main()
{
int a=5;
float b=7.5;
long c=50000900000;
double d=784848.33;
cout<<"square of int variable is :
"<<square(a)<<endl;
cout<<"square of long variable is :
"<<square(b)<<endl;
cout<<"square of long variable is : "<<square
(c)<<endl;
cout<<"square of double variable is :
"<<square(d)<<endl;
cin.get();
getch();

8
template<class t >
void get( t x, t y , int c)
{
int sum;
sum=x+y+c;
cout<<sum;
cin.get();
getch();
}

void main()
{
int a=6;
int b=9;
int c=8;
get(a,b,c);
}

9
Function Template

template<class t, class v >
void get(t x, v y ,int c)
{
v sum;
sum=x+y+c;
cout<<sum;
cin.get();
getch();
}
void main()
{
int a=6;
float b=9.9;
int c=8;
get(a,b,c);
}

Output:

10
Class

template definition does not

change
Class template work for variable of all
types instead of single basic type

11
Class Template

template <class t>
class Basket
{
t first;
t second;
public:
Basket (t a, t b)
{
first = a;
second = b;
}
t Bat()
{
return (first > second?first:second);
}
}; //class end

void main()
{
Basket <int> bo(6,8);
cout<<bo.Bat()<<endl;
Basket <float> b1(1.1,3.3);
cout<<b1.Bat()<<endl;
system ("pause");
}

Output:
8
3.3

12
Continued…

If we write
Basket <int> b(6.99,8.88);
Instead of
Basket <int> b(6,8);
Output will be in integers i.e
8

13
Class Template

template <class t>
class Basket
{
t first;
t second;
public:
Basket (t a, t b)
{
first = a;
second = b;
}
t Big();
}; //class end
template <class t>
t Basket <t>::Big()
{
return (first > second?first:second);
}

void main()
{
Basket <int> b(6,8);
cout<<b.Big()<<endl;
Basket <float> b1(4.1,1.1);
cout<<b1.Big()<<endl;
system ("pause");
}

Output:
8
4.1

14
Continued…

template <class t>
t Basket <t>::Big()
{
return (first > second?first:second);

}
The

name Basket<t> is used to identify the
class of which Big() is a member function . In
a normal non-template member function the
name Basket alone would suffice.
Void Basket :: Big()
{
return (first > second?first:second);

}

15
Continued…

int Basket<int>::Big()
{
return (first > second?first:second);
}
float Basket<float>::Big()
{
return (first > second?first:second);
}
16
template<class TYPE>
struct link
{
TYPE data;
link* next;
};
template<class TYPE>
class linklist
{
private:
link<TYPE>* first;
public:
linklist()
{ first = NULL; }
void additem(TYPE d);
void display();
};

template<class TYPE>
void
linklist<TYPE>::additem(TYPE
d)
{
link<TYPE>* newlink = new
link<TYPE>;
newlink->data = d;
newlink->next = first;
first = newlink;
}
template<class TYPE>
void linklist<TYPE>::display()
{
link<TYPE>* current = first;
while( current != NULL )
17
Continued…

{

linklist<char> lch;

cout << endl << current->data;
current = current->next;
}
}

lch.additem('a');
lch.additem('b');
lch.additem('c');
lch.display();
cout << endl;
system("pause");

int main()
{
linklist<double> ld;
ld.additem(151.5);
ld.additem(262.6);
ld.additem(373.7);
ld.display();

}
OUTPUT
373.7
262.6
151.5
c
b
a

18
An

exception is a condition that
occurs at execution time and make
normal continuation of program
impossible.
When

an exception occurs, the
program must either terminate or jump
to special code for handling the
exception.
 Divide by zero errors.
 Accessing the element of an array beyond its
range
 Invalid input
 Hard disk crash
 Opening a non existent file
19
The

way of handling anomalous situations in a
program-run is known as exception handling.
Its advantage are:





Exception handling separate error-handling code from normal code.
It clarifies the code and enhances readability
Catch error s before it occurs.
It makes for clear, robust and fault -tolerant program s.

20






Tries a block of code that may contain
exception
Throws an exception when one is detected
Catches the exception and handles it
Thus there are three concepts
i. The try block
ii.The throwing of the exception
iii.The catch block

21


A block which includes the code that may
generate the error(an exception)
try { ….
}






Can be followed by one or more catch blocks
which handles the exception
Control of the program passes from the
statements in the try block ,to the appropriate
catch block.
Functions called try block, directly or
indirectly, could test for the presence of the
error
22




Used to indicate that an exception has occurred
Will be caught by closest exception handler
Syntax:if ( // error)
{
Throw error();
}

23
Contain the exception handler.
 These know what to do with the exceptiontypically print out that a type of error has
occurred.
 Catch blocks are typically located right after
the try block that could throw the exception
Syntax:catch()
{
…..
}


24
25
Exceptions

const int DivideByZero = 10;
double divide(double x, double
y)
{
if(y==0)
{
throw DivideByZero;
}
return x/y;
}
int main()
{
try
{
divide(10, 0);
}

catch(int i)
{
if(i==DivideByZero)
{
cout<<"Divide by zero
error";
}
cin.get();
}}

Output:Divide by zero
error

26
















Class Aclass
{
Public:
Class Anerror
{
};
Void func()
{
if(/*error condition*/)
Throw Anerror();
}
};

Int main()
{
Try
{
Aclass object1;
Object1.fun();
}
Catch (Aclass ::Anerror) //may
cause error
{
//tell user about error
}
Return 0;
}

27
try
{
//try block
}
catch(type1 arg)
{
//catch block1
}
catch(type2 arg)
{
//catch block2
}

…….
…….
catch(typeN arg)
{
//catch blockN
}

28
Multiple Exceptions

const int Max=3;
class stack
{private:
int st[Max],top;
public:
class full
{};
Class empty
{};
stack()
{top=-1;
}

void push(int var)
{
if(top>=Max-1)
throw full();
st[++top]=var;
}
Int pop()
{if(top<0)
Throw empty();
Return st [top--];
}
};
29
Continued…

int main()
{stack s1;
try
{
s1.push(11); s1.push(22);
s1.push(33); s1.push(44);
S1.pop();
s1.pop();
S1.pop();
s1.pop();
}
catch(stack::full)
{
cout<<"exception :stack
full"<<endl;
}

Catch(stack::empty)
{
Cout<<“exception: stack
empty”<<endl;
}
cin.get();
}

30
class Distance
{
private:
int feet;
float inches;
public:
class InchesEx { };
Distance()
{ feet = 0; inches = 0.0; }
Distance(int ft, float in)
{
if(in >= 12.0)
throw InchesEx();
feet = ft;
inches = in;
}

void getdist()
{
cout << "nEnter feet: "; cin >>
feet;
cout << "Enter inches: "; cin >>
inches;
if(inches >= 12.0)
throw InchesEx();
}
void showdist()
{ cout << feet << "’-" << inches; }
};

31
Continued…
int main()
{
try
{
Distance dist1(17, 3.5);
Distance dist2;
dist2.getdist();
cout << "ndist1 = "; dist1.showdist();
cout << "ndist2 = "; dist2.showdist();
}
catch(Distance::InchesEx)
{
cout << "nInitialization error: ";
cout<< "inches value is too large.";
}
cout << endl;
return 0;
}

32
class Distance
{
private:
int feet;
float inches;
public:
class InchesEx
{
public:
string origin;
float iValue;
InchesEx(string or, float in)
{
origin = or;
iValue = in;
}
};

Distance()
{ feet = 0; inches = 0.0; }
Distance(int ft, float in)
{
if(in >= 12.0)
throw InchesEx("2-arg
constructor", in);
feet = ft;
inches = in;
}
void getdist()
{
cout << "nEnter feet: "; cin >>
feet;
cout << "Enter inches: "; cin >>
inches;
33
Continued…

if(inches >= 12.0)
throw InchesEx("getdist()
function", inches);
}
void showdist()
{ cout << feet << "’-" << inches;
}
};
void main()
{
try
{
Distance dist1(17, 3.5);
Distance dist2;

dist2.getdist();
cout << "ndist1 = ";
dist1.showdist();
cout << "ndist2 = ";
dist2.showdist();
}
catch(Distance::InchesEx ix)
{
cout << "nInitialization error in
" << ix.origin
<< ".n Inches value of " <<
ix.iValue
<< " is too large.";
}
34
class InchesEx
{
public:
string origin;
float iValue;
InchesEx(string or, float in)
{
origin = or;
iValue = in;
}
};
35


Extracting data from the exception object
int main()
{
const unsigned long SIZE = 10000;
char* ptr;
try
{
ptr = new char[SIZE];
}
catch(bad_alloc)
{
cout << “nbad_alloc exception: can’t
allocate memory.n”;
return(1);
}
delete[] ptr; //deallocate memory
cout << “nMemory use is successful.n”;
return 0;
}

36

Contenu connexe

Tendances

More on Classes and Objects
More on Classes and ObjectsMore on Classes and Objects
More on Classes and ObjectsPayel Guria
 
Hidden Gems in Swift
Hidden Gems in SwiftHidden Gems in Swift
Hidden Gems in SwiftNetguru
 
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...ssuserd6b1fd
 
TDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDB
TDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDBTDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDB
TDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDBtdc-globalcode
 
3. Объекты, классы и пакеты в Java
3. Объекты, классы и пакеты в Java3. Объекты, классы и пакеты в Java
3. Объекты, классы и пакеты в JavaDEVTYPE
 
Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...
Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...
Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...ssuserd6b1fd
 
TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...
TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...
TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...tdc-globalcode
 
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...ssuserd6b1fd
 
TypeScript - All you ever wanted to know - Tech Talk by Epic Labs
TypeScript - All you ever wanted to know - Tech Talk by Epic LabsTypeScript - All you ever wanted to know - Tech Talk by Epic Labs
TypeScript - All you ever wanted to know - Tech Talk by Epic LabsAlfonso Peletier
 
C tech questions
C tech questionsC tech questions
C tech questionsvijay00791
 
Swift 함수 커링 사용하기
Swift 함수 커링 사용하기Swift 함수 커링 사용하기
Swift 함수 커링 사용하기진성 오
 
Type Driven Development with TypeScript
Type Driven Development with TypeScriptType Driven Development with TypeScript
Type Driven Development with TypeScriptGarth Gilmour
 

Tendances (19)

More on Classes and Objects
More on Classes and ObjectsMore on Classes and Objects
More on Classes and Objects
 
Hidden Gems in Swift
Hidden Gems in SwiftHidden Gems in Swift
Hidden Gems in Swift
 
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 5 of 5 by...
 
TDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDB
TDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDBTDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDB
TDC2016POA | Trilha .NET - CQRS e ES na prática com RavenDB
 
3. Объекты, классы и пакеты в Java
3. Объекты, классы и пакеты в Java3. Объекты, классы и пакеты в Java
3. Объекты, классы и пакеты в Java
 
Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...
Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...
Notes for GNU Octave - Numerical Programming - for Students - 02 of 02 by aru...
 
TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...
TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...
TDC2016POA | Trilha .NET - C# como você nunca viu: conceitos avançados de pro...
 
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...
Notes for C Programming for MCA, BCA, B. Tech CSE, ECE and MSC (CS) 2 of 5 by...
 
TypeScript - All you ever wanted to know - Tech Talk by Epic Labs
TypeScript - All you ever wanted to know - Tech Talk by Epic LabsTypeScript - All you ever wanted to know - Tech Talk by Epic Labs
TypeScript - All you ever wanted to know - Tech Talk by Epic Labs
 
Implementing stack
Implementing stackImplementing stack
Implementing stack
 
Java cheatsheet
Java cheatsheetJava cheatsheet
Java cheatsheet
 
Networking Core Concept
Networking Core ConceptNetworking Core Concept
Networking Core Concept
 
Pointer
PointerPointer
Pointer
 
C tech questions
C tech questionsC tech questions
C tech questions
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
Swift 함수 커링 사용하기
Swift 함수 커링 사용하기Swift 함수 커링 사용하기
Swift 함수 커링 사용하기
 
Type Driven Development with TypeScript
Type Driven Development with TypeScriptType Driven Development with TypeScript
Type Driven Development with TypeScript
 
C programs
C programsC programs
C programs
 
Stl algorithm-Basic types
Stl algorithm-Basic typesStl algorithm-Basic types
Stl algorithm-Basic types
 

En vedette

Makalah jaringan-komputer
Makalah jaringan-komputerMakalah jaringan-komputer
Makalah jaringan-komputerMedok Zoya
 
UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"
UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"
UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"Tatiana Cobena Tayo
 
Najpiękniejsze miejsca na świecie
Najpiękniejsze miejsca na świecieNajpiękniejsze miejsca na świecie
Najpiękniejsze miejsca na świeciezsStb
 
UTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA
UTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULAUTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA
UTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULATatiana Cobena Tayo
 
Zalety i wady internetu
Zalety i wady internetuZalety i wady internetu
Zalety i wady internetuzsStb
 

En vedette (15)

Rozmowa doradcza
Rozmowa doradczaRozmowa doradcza
Rozmowa doradcza
 
Makalah jaringan-komputer
Makalah jaringan-komputerMakalah jaringan-komputer
Makalah jaringan-komputer
 
Rozmowa doradcza
Rozmowa doradczaRozmowa doradcza
Rozmowa doradcza
 
UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"
UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"
UTE "OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA"
 
Pre zen ta sion
Pre zen ta sionPre zen ta sion
Pre zen ta sion
 
Sistem imun
Sistem imunSistem imun
Sistem imun
 
Emoticonos
EmoticonosEmoticonos
Emoticonos
 
Najpiękniejsze miejsca na świecie
Najpiękniejsze miejsca na świecieNajpiękniejsze miejsca na świecie
Najpiękniejsze miejsca na świecie
 
Rozmowa doradcza
Rozmowa doradczaRozmowa doradcza
Rozmowa doradcza
 
fungi
fungi fungi
fungi
 
UTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA
UTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULAUTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA
UTE OTRAS VARIABLES QUE DETERMINAN LA DIVERSIDAD EN EL AULA
 
Rozmowa doradcza 12
Rozmowa doradcza 12Rozmowa doradcza 12
Rozmowa doradcza 12
 
Rozmowa doradcza
Rozmowa doradczaRozmowa doradcza
Rozmowa doradcza
 
Sistem imun
Sistem imunSistem imun
Sistem imun
 
Zalety i wady internetu
Zalety i wady internetuZalety i wady internetu
Zalety i wady internetu
 

Similaire à Presentation on template and exception

Pads lab manual final
Pads lab manual finalPads lab manual final
Pads lab manual finalAhalyaR
 
Inheritance in C++.ppt
Inheritance in C++.pptInheritance in C++.ppt
Inheritance in C++.pptinstaface
 
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docxlab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docxDIPESH30
 
Lecture 3, c++(complete reference,herbet sheidt)chapter-13
Lecture 3, c++(complete reference,herbet sheidt)chapter-13Lecture 3, c++(complete reference,herbet sheidt)chapter-13
Lecture 3, c++(complete reference,herbet sheidt)chapter-13Abu Saleh
 
Oops lab manual2
Oops lab manual2Oops lab manual2
Oops lab manual2Mouna Guru
 
Intro to c programming
Intro to c programmingIntro to c programming
Intro to c programmingPrabhu Govind
 
C++: Constructor, Copy Constructor and Assignment operator
C++: Constructor, Copy Constructor and Assignment operatorC++: Constructor, Copy Constructor and Assignment operator
C++: Constructor, Copy Constructor and Assignment operatorJussi Pohjolainen
 
Java весна 2013 лекция 2
Java весна 2013 лекция 2Java весна 2013 лекция 2
Java весна 2013 лекция 2Technopark
 
Using CUDA Within Mathematica
Using CUDA Within MathematicaUsing CUDA Within Mathematica
Using CUDA Within Mathematicakrasul
 

Similaire à Presentation on template and exception (20)

C++ programs
C++ programsC++ programs
C++ programs
 
Oop objects_classes
Oop objects_classesOop objects_classes
Oop objects_classes
 
Pads lab manual final
Pads lab manual finalPads lab manual final
Pads lab manual final
 
Inheritance in C++.ppt
Inheritance in C++.pptInheritance in C++.ppt
Inheritance in C++.ppt
 
oop objects_classes
oop objects_classesoop objects_classes
oop objects_classes
 
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docxlab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
 
Lecture 3, c++(complete reference,herbet sheidt)chapter-13
Lecture 3, c++(complete reference,herbet sheidt)chapter-13Lecture 3, c++(complete reference,herbet sheidt)chapter-13
Lecture 3, c++(complete reference,herbet sheidt)chapter-13
 
Tu1
Tu1Tu1
Tu1
 
New presentation oop
New presentation oopNew presentation oop
New presentation oop
 
Xiicsmonth
XiicsmonthXiicsmonth
Xiicsmonth
 
Oops lab manual2
Oops lab manual2Oops lab manual2
Oops lab manual2
 
Intro to c programming
Intro to c programmingIntro to c programming
Intro to c programming
 
C++: Constructor, Copy Constructor and Assignment operator
C++: Constructor, Copy Constructor and Assignment operatorC++: Constructor, Copy Constructor and Assignment operator
C++: Constructor, Copy Constructor and Assignment operator
 
Templates
TemplatesTemplates
Templates
 
C++ prgms 3rd unit
C++ prgms 3rd unitC++ prgms 3rd unit
C++ prgms 3rd unit
 
Ss
SsSs
Ss
 
C# labprograms
C# labprogramsC# labprograms
C# labprograms
 
Java весна 2013 лекция 2
Java весна 2013 лекция 2Java весна 2013 лекция 2
Java весна 2013 лекция 2
 
Java and j2ee_lab-manual
Java and j2ee_lab-manualJava and j2ee_lab-manual
Java and j2ee_lab-manual
 
Using CUDA Within Mathematica
Using CUDA Within MathematicaUsing CUDA Within Mathematica
Using CUDA Within Mathematica
 

Dernier

Presentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxPresentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxRosabel UA
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataBabyAnnMotar
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEaurabinda banchhor
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxruthvilladarez
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 

Dernier (20)

Presentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxPresentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped data
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSE
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docx
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 

Presentation on template and exception

  • 1. 1
  • 2. 2
  • 3. 3
  • 4. Template concept can be use in two different concepts i. Function template ii. Class template 4
  • 5. The body of the function template is written in the same way in each case as function is written but the difference is that they can handle arguments and return value of different types. 5
  • 6. Function Template Template function: template <class T> void get(T a) { cout <<" value : "<<a; cin.get(); } void main() { int a=5; float b=4.3; get(a); get(b);  }  Simple function: void get(int a) { cout <<" value : "<<a; cin.get(); getch(); } void main() { int a=5; float b=4.3; get(a); get(b); } 6
  • 8. template <class T> T square(T value) { return value*value; } int main() { int a=5; float b=7.5; long c=50000900000; double d=784848.33; cout<<"square of int variable is : "<<square(a)<<endl; cout<<"square of long variable is : "<<square(b)<<endl; cout<<"square of long variable is : "<<square (c)<<endl; cout<<"square of double variable is : "<<square(d)<<endl; cin.get(); getch(); 8
  • 9. template<class t > void get( t x, t y , int c) { int sum; sum=x+y+c; cout<<sum; cin.get(); getch(); } void main() { int a=6; int b=9; int c=8; get(a,b,c); } 9
  • 10. Function Template template<class t, class v > void get(t x, v y ,int c) { v sum; sum=x+y+c; cout<<sum; cin.get(); getch(); } void main() { int a=6; float b=9.9; int c=8; get(a,b,c); } Output: 10
  • 11. Class template definition does not change Class template work for variable of all types instead of single basic type 11
  • 12. Class Template template <class t> class Basket { t first; t second; public: Basket (t a, t b) { first = a; second = b; } t Bat() { return (first > second?first:second); } }; //class end void main() { Basket <int> bo(6,8); cout<<bo.Bat()<<endl; Basket <float> b1(1.1,3.3); cout<<b1.Bat()<<endl; system ("pause"); } Output: 8 3.3 12
  • 13. Continued… If we write Basket <int> b(6.99,8.88); Instead of Basket <int> b(6,8); Output will be in integers i.e 8 13
  • 14. Class Template template <class t> class Basket { t first; t second; public: Basket (t a, t b) { first = a; second = b; } t Big(); }; //class end template <class t> t Basket <t>::Big() { return (first > second?first:second); } void main() { Basket <int> b(6,8); cout<<b.Big()<<endl; Basket <float> b1(4.1,1.1); cout<<b1.Big()<<endl; system ("pause"); } Output: 8 4.1 14
  • 15. Continued… template <class t> t Basket <t>::Big() { return (first > second?first:second); } The name Basket<t> is used to identify the class of which Big() is a member function . In a normal non-template member function the name Basket alone would suffice. Void Basket :: Big() { return (first > second?first:second); } 15
  • 16. Continued… int Basket<int>::Big() { return (first > second?first:second); } float Basket<float>::Big() { return (first > second?first:second); } 16
  • 17. template<class TYPE> struct link { TYPE data; link* next; }; template<class TYPE> class linklist { private: link<TYPE>* first; public: linklist() { first = NULL; } void additem(TYPE d); void display(); }; template<class TYPE> void linklist<TYPE>::additem(TYPE d) { link<TYPE>* newlink = new link<TYPE>; newlink->data = d; newlink->next = first; first = newlink; } template<class TYPE> void linklist<TYPE>::display() { link<TYPE>* current = first; while( current != NULL ) 17
  • 18. Continued… { linklist<char> lch; cout << endl << current->data; current = current->next; } } lch.additem('a'); lch.additem('b'); lch.additem('c'); lch.display(); cout << endl; system("pause"); int main() { linklist<double> ld; ld.additem(151.5); ld.additem(262.6); ld.additem(373.7); ld.display(); } OUTPUT 373.7 262.6 151.5 c b a 18
  • 19. An exception is a condition that occurs at execution time and make normal continuation of program impossible. When an exception occurs, the program must either terminate or jump to special code for handling the exception.  Divide by zero errors.  Accessing the element of an array beyond its range  Invalid input  Hard disk crash  Opening a non existent file 19
  • 20. The way of handling anomalous situations in a program-run is known as exception handling. Its advantage are:     Exception handling separate error-handling code from normal code. It clarifies the code and enhances readability Catch error s before it occurs. It makes for clear, robust and fault -tolerant program s. 20
  • 21.     Tries a block of code that may contain exception Throws an exception when one is detected Catches the exception and handles it Thus there are three concepts i. The try block ii.The throwing of the exception iii.The catch block 21
  • 22.  A block which includes the code that may generate the error(an exception) try { …. }    Can be followed by one or more catch blocks which handles the exception Control of the program passes from the statements in the try block ,to the appropriate catch block. Functions called try block, directly or indirectly, could test for the presence of the error 22
  • 23.    Used to indicate that an exception has occurred Will be caught by closest exception handler Syntax:if ( // error) { Throw error(); } 23
  • 24. Contain the exception handler.  These know what to do with the exceptiontypically print out that a type of error has occurred.  Catch blocks are typically located right after the try block that could throw the exception Syntax:catch() { ….. }  24
  • 25. 25
  • 26. Exceptions const int DivideByZero = 10; double divide(double x, double y) { if(y==0) { throw DivideByZero; } return x/y; } int main() { try { divide(10, 0); } catch(int i) { if(i==DivideByZero) { cout<<"Divide by zero error"; } cin.get(); }} Output:Divide by zero error 26
  • 27.             Class Aclass { Public: Class Anerror { }; Void func() { if(/*error condition*/) Throw Anerror(); } }; Int main() { Try { Aclass object1; Object1.fun(); } Catch (Aclass ::Anerror) //may cause error { //tell user about error } Return 0; } 27
  • 28. try { //try block } catch(type1 arg) { //catch block1 } catch(type2 arg) { //catch block2 } ……. ……. catch(typeN arg) { //catch blockN } 28
  • 29. Multiple Exceptions const int Max=3; class stack {private: int st[Max],top; public: class full {}; Class empty {}; stack() {top=-1; } void push(int var) { if(top>=Max-1) throw full(); st[++top]=var; } Int pop() {if(top<0) Throw empty(); Return st [top--]; } }; 29
  • 30. Continued… int main() {stack s1; try { s1.push(11); s1.push(22); s1.push(33); s1.push(44); S1.pop(); s1.pop(); S1.pop(); s1.pop(); } catch(stack::full) { cout<<"exception :stack full"<<endl; } Catch(stack::empty) { Cout<<“exception: stack empty”<<endl; } cin.get(); } 30
  • 31. class Distance { private: int feet; float inches; public: class InchesEx { }; Distance() { feet = 0; inches = 0.0; } Distance(int ft, float in) { if(in >= 12.0) throw InchesEx(); feet = ft; inches = in; } void getdist() { cout << "nEnter feet: "; cin >> feet; cout << "Enter inches: "; cin >> inches; if(inches >= 12.0) throw InchesEx(); } void showdist() { cout << feet << "’-" << inches; } }; 31
  • 32. Continued… int main() { try { Distance dist1(17, 3.5); Distance dist2; dist2.getdist(); cout << "ndist1 = "; dist1.showdist(); cout << "ndist2 = "; dist2.showdist(); } catch(Distance::InchesEx) { cout << "nInitialization error: "; cout<< "inches value is too large."; } cout << endl; return 0; } 32
  • 33. class Distance { private: int feet; float inches; public: class InchesEx { public: string origin; float iValue; InchesEx(string or, float in) { origin = or; iValue = in; } }; Distance() { feet = 0; inches = 0.0; } Distance(int ft, float in) { if(in >= 12.0) throw InchesEx("2-arg constructor", in); feet = ft; inches = in; } void getdist() { cout << "nEnter feet: "; cin >> feet; cout << "Enter inches: "; cin >> inches; 33
  • 34. Continued… if(inches >= 12.0) throw InchesEx("getdist() function", inches); } void showdist() { cout << feet << "’-" << inches; } }; void main() { try { Distance dist1(17, 3.5); Distance dist2; dist2.getdist(); cout << "ndist1 = "; dist1.showdist(); cout << "ndist2 = "; dist2.showdist(); } catch(Distance::InchesEx ix) { cout << "nInitialization error in " << ix.origin << ".n Inches value of " << ix.iValue << " is too large."; } 34
  • 35. class InchesEx { public: string origin; float iValue; InchesEx(string or, float in) { origin = or; iValue = in; } }; 35
  • 36.  Extracting data from the exception object int main() { const unsigned long SIZE = 10000; char* ptr; try { ptr = new char[SIZE]; } catch(bad_alloc) { cout << “nbad_alloc exception: can’t allocate memory.n”; return(1); } delete[] ptr; //deallocate memory cout << “nMemory use is successful.n”; return 0; } 36