Problem
1. Which member functions are special member functions, and what makes them special?
2. Suppose the Fizzle class has only the data members shown:
class Fizzle
{
private;
double bubbles [4000];
....
};
Why would this class not be a good candidate for a user-defined move constructor? What change in approach to storing the 4000 double values would make the class a good candidate for a move function?