1 |
h01 |
CS32 F19 |
Name: | ||||
---|---|---|---|---|
(as it would appear on official course roster) | ||||
Umail address: | @umail.ucsb.edu | section 9am, 10am, 11am, 12pm |
||
Optional: name you wish to be called if different from name above. | ||||
Optional: name of "homework buddy" (leaving this blank signifies "I worked alone" |
h01: Templates and the STL
ready? | assigned | due | points |
---|---|---|---|
true | Thu 09/26 02:00PM | Tue 10/08 02:00PM |
You may collaborate on this homework with AT MOST one person, an optional "homework buddy".
MAY ONLY BE TURNED IN IN THE LECTURE LISTED ABOVE AS THE DUE DATE,
OR IF APPLICABLE, SUBMITTED ON GRADESCOPE. There is NO MAKEUP for missed assignments;
in place of that, we drop the lowest scores (if you have zeros, those are the lowest scores.)
Reading: Templates and the STL, PS 8.3, 17, 18
- (10 pts) Fill in the information in the header. The following are required to get the 10 "participation" points.
- Filling in your name and umail address.
Also: For paper submission PLEASE submit on ONE SHEET OF PAPER, double-sided if at all possible. If you must submit on two printed sheets write name on BOTH sheets and no staples, paperclips, or folded corners.
- Filling in your name and umail address.
- Suppose we have a C++ class called
Student
. There are many ways one can create a collectionStudent
objects. Among these: one can use a normal C++ array or an STLvector
, and one could create a collection of objects, or of pointers to objects (presumably allocated on the heap.)- (2 pts) Write a line of C++ code that declares an array
a
that can hold 10 objects of typeStudent
. - (2 pts) Write a line of C++ code that declares an array
b
that can hold 10 pointers to objects of typeStudent
. - (2 pts) Write a line of C++ code that declares an STL vector
c
that can hold 10 objects of typeStudent
. - (2 pts) Write a line of C++ code that declares an STL vector
d
that can hold 10 pointers to objects of typeStudent
.
- (2 pts) Write a line of C++ code that declares an array
- (20 pts) In the previous problem, you were asked to write four different declarations, (a), (b), (c) and (d). Each of these has "pros" and "cons". There are also differences among them that we might describe as "neutral", for whether they are a pro/con depends on the context. For the "pros" and "cons" below, please indicate which of the letters above (a, b, c, d) the statement applies to. Note that in some cases, you may have to indicate more than one letter. Circle the letters to which the statement applies. If you mess up, cross out all the letters and list the letters in the space to the right.
Hero or zero? | Choices |
---|---|
Con: Additional #include directives and using statements are required to use this approach. |
a b c d |
Pro: The item declared can be expanded beyond 10 items if needed. | a b c d |
Pro: You can declare this item without actually creating any Student objects. | a b c d |
Con: The class MUST have a default constructor, or this declaration is not permitted. | a b c d |
Pro: All space for the item and the Students it contains are co-located in memory—on the stack if the item is declared as a local | a b c d |
Grading: for each answer, deduct one point if an item should be included and is not, or is included and should not be.
- (3 pts) In your own words, what is the "problem" for which "templates for functions" is a solution? I'm looking for a brief description—a single sentence, or at most 2-3 sentences that get to the central point, a description of the problem, not a detailed description of everything you know about templates, and certainly not a sentence copied, word-for-word, from either textbook.
- (3 pts) The C++ syntax for function templates includes this
template <class Item>
. The nameItem
in the example above is preceeded by the keywordclass
. One might infer from that thatItem
should be the name of someclass
, e.g.class Student
, orclass Roster
, etc. But that is not a correct assumption. Explain why. (BRIEFLY!) -
Let's say you have a function
int calc(int operand1, int operand2, char op)
whereop
is either '+' or '-'. Instead of overloading this function for each numerical datatype in C++ (e.g. also defining it forfloat
,double
, etc., you want to create a generic function that is far more flexible. In the space below, definecalc
as a template function. If op is neither '+' nor '-', print an error message oncerr
and call the system functionexit(1);
(you may assume that#include<cstdlib>
has already been done.)Note that once we've covered exceptions, that would be a better approach than the
cerr/exit
technique.Grading:- (2 pts) for correct template function header
- (2 pts) for correctly handling the error
- (2 pts) for function body being correct for non-error case.