Skip to Content
C++20 for Lazy Programmers: Quick, Easy, and Fun C++ for Beginners
book

C++20 for Lazy Programmers: Quick, Easy, and Fun C++ for Beginners

by Will Briggs
December 2020
Beginner to intermediate
681 pages
11h 20m
English
Apress
Content preview from C++20 for Lazy Programmers: Quick, Easy, and Fun C++ for Beginners
© Will Briggs 2021
W. BriggsC++20 for Lazy Programmershttps://doi.org/10.1007/978-1-4842-6306-8_20

20. Templates

Will Briggs1  
(1)
Lynchburg, VA, USA
 

Would I write a function or class that takes ints and another just like it except it takes strings and another except it takes doubles? That doesn’t sound lazy! This chapter enables us to write it once, using templates.

Function templates

Recall this function for swapping ints, renamed here for convenience, from Chapter 8:
void mySwap (int& arg1, int& arg2)
{
    int temp = arg2; arg2 = arg1; arg1 = temp;
}
That’s fine for int, but what if I want doubles? Heffalumps? Or a mix? Here’s the fix so I can swap int with int, int with double, heffalumps with snarks, anything, as long as C++ knows how to use =
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C++ for Lazy Programmers: Quick, Easy, and Fun C++ for Beginners

C++ for Lazy Programmers: Quick, Easy, and Fun C++ for Beginners

Will Briggs

Publisher Resources

ISBN: 9781484263068Purchase LinkPublisher Website