 |
 |
 |
 |
 |
 |
 |
 |
 |
| • |
Remember
that when you define a local variable
|
|
|
|
in
C++, the memory is not automatically
|
|
|
|
initialized
for you
|
|
|
| • |
This
could be a problem with classes and objects
|
|
| • |
If we
define an object of our list class, we really
|
|
|
|
need
the “num_of_videos” data member to have
|
|
|
|
the
value zero
|
|
|
| • |
Uninitialized
just wouldn’t work!
|
|