Here is a class declaration.  The only member data is a vector holding ints, your job is to implement the six member functions. class IntCollection {   private:     vector data;   public:     void add(int value);     int get(int index);     int getSize();   IntCollection& operator=(const IntCollection &c);       bool operator==(const IntCollection &c);           IntCollection& operator<<(int value);             }; Because a vector handles everything we need under the hood, we don't need the addCapacity function, constructors, or a destructor.  The rest of the functions are described below.  They should be simple to implement, most only require one or two lines! add() should add the value to the end of the vector.  get() should return the element at the given index. getSize() should return the number of elements in the vector. The Assignment operator (=). The assignment operator should perform a deep copy of the argument object.  It must return itself (or more efficiently, a reference to itself) in order to support multiple assignments on the same line, e.g. a = b = c.  If you implement your assignment operator first it could be used in the copy constructor, but this is not a requirement. The Is Equals operator (==). The "is equals" operator should return true if the argument object has the same size as the receiving object, and the values in both objects’ data arrays are identical. The insertion operator (<<). The insertion operator should add the int parameter into the receiving IntCollection.  The functionality is the same as the add() function, i.e. add ints to the collection.  Note, however, that this function must return a reference to itself in order to support multiple insertions on the same line, e.g. c << 45 << -210.  Unlike the assignment operator, this return must be done by reference, because each insertion actually modifies the IntCollection object, and insertion is done from left to right.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter13: Overloading And Templates
Section: Chapter Questions
Problem 19PE
icon
Related questions
Question

Here is a class declaration.  The only member data is a vector holding ints, your job is to implement the six member functions.

class IntCollection
{
  private:
    vector<int> data;
  public:
    void add(int value);
    int get(int index);
    int getSize();
  IntCollection& operator=(const IntCollection &c);    
  bool operator==(const IntCollection &c);        
  IntCollection& operator<<(int value);            
};

Because a vector handles everything we need under the hood, we don't need the addCapacity function, constructors, or a destructor.  The rest of the functions are described below.  They should be simple to implement, most only require one or two lines!

  1. add() should add the value to the end of the vector. 
  2. get() should return the element at the given index.
  3. getSize() should return the number of elements in the vector.
  4. The Assignment operator (=). The assignment operator should perform a deep copy of the argument object.  It must return itself (or more efficiently, a reference to itself) in order to support multiple assignments on the same line, e.g. a = b = c.  If you implement your assignment operator first it could be used in the copy constructor, but this is not a requirement.
  5. The Is Equals operator (==). The "is equals" operator should return true if the argument object has the same size as the receiving object, and the values in both objects’ data arrays are identical.
  6. The insertion operator (<<). The insertion operator should add the int parameter into the receiving IntCollection.  The functionality is the same as the add() function, i.e. add ints to the collection.  Note, however, that this function must return a reference to itself in order to support multiple insertions on the same line, e.g. c << 45 << -210.  Unlike the assignment operator, this return must be done by reference, because each insertion actually modifies the IntCollection object, and insertion is done from left to right.  
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning