Every object is the same as a simple array, in that each index contains an object class. At the time of creation of the object array, the default constructors
should be called.
Basic syntax for the decalaration and initailzation of objects with the default values by calling different constructors :
- On
0
index initilize the object with the default construtor. - On
1
index initilize the object with the parameterized construtor. - On
2
index initilize the object with the copy construtor.
Accessing of these objects is same as the simple arrays dot(.) operator
for the static arrays and spread(->) operator
for the dynamic arrays.
If you come from a background in other high-level programming languages, like JavaScript
, you may notice that there are functions like Array.prototype.sort()
that are class prototypal inherited functions. In C++ terms, you may say that they are member functions attached to the class called on array objects. In C++, you can create a similar type of class and attach methods to this class. This Array
class will be more helpful when you are dealing with projects that have an Array data structure
.
- Every Constructor has its own allocted heap memory of size
X
- Destrutor always delete the heap allocated memory
- Always overload Assignment Operator and deallocate the previous memory and reallocate with new memory
- Overload subscript operator
[]
for thel-value_r-value
andconst-r-value
to get more abstraction
Every Array class has these prequisite, then attach the other member functions that are necessary for your project.
- Every Constructor has ist own allocted heap memory of size
X
- When overloading the assignment operator, it is essential to always write it in such a way that it deallocates the previous memory and reallocates with new memory. The most important point to understand is that, in the assignment
operator
, firstly we check if there is no self-assignment&obj!=this
, then there is a chance that the left-hand object has a size different from the size of the right-hand object. If we copy them, thenarray index out of bounds
issues will be created. To resolve these problems, we candelete
the left-hand memory equal to its size to the right-hand object size, then copy them.
- Overload subscript operator
[]
for thel-value_r-value
andconst-r-value
to get more abstraction suppose we hava an array ofsize=5
in main we are accesing the array element be likearr[8]
then what do we get? We are actually accessing the memory position of 4*3 bytes index out of bound. We may get some garbage collection here. To restrict the user and resolve this problem we will apply the checkif(index>=0 && index<size)
else get the some alert result. There is another interesting fact here that when we are re-assigning the array element with new element in short terms over-writing the variable, then we will return the reference aliasint &
of the original array element to overrite the image of that index value.
#include <iostream>
using namespace std;
class Array
{
private:
int *arr;
int size;
public:
Array()
{
size = 1;
arr = new int[size];
for (int i = 0; i < size; i++)
{
arr[i] = 0;
}
}
Array(const int &size) : size{size}
{
arr = new int[size];
for (int i = 0; i < size; i++)
{
arr[i] = 0;
}
}
// PARAMETERIZED_CONSTRUCTOR
Array(const int &size, const int _arr[]) : size{size}
{
arr = new int[size];
for (int i = 0; i < size; i++)
{
arr[i] = _arr[i];
}
}
// COPY_CONSTRUCTOR
Array(const Array &obj) : size{obj.size}
{
arr = new int[size];
for (int i = 0; i < size; i++)
{
arr[i] = obj.arr[i];
}
}
// OVERLOADED_ASSIGNMENT OPERATOR
Array operator=(const Array &obj)
{
if (&obj != this)
{
size = obj.size;
delete[] arr;
arr = new int[size];
for (int i = 0; i < size; i++)
{
arr[i] = obj.arr[i];
}
}
return *this;
}
// OVERLOADED _SUBSCRIPT OPERATOR(For the R-value)
int operator[](const int &index) const
{
if (index >= 0 && index < size)
{
return arr[index];
}
cout << "Array Index is Out-of-Bound" << endl;
exit(0);
}
// OVERLOADED _SUBSCRIPT OPERATOR(For the L-value and R-value)
int &operator[](const int &index)
{
if (index >= 0 && index < size)
{
return arr[index];
}
cout << "Array Index is Out-of-Bound" << endl;
exit(0);
}
void putData()
{
cout << "Put the data in the all array elements of size " << size << ": \n";
for (int i = 0; i < size; i++)
{
cin >> arr[i];
}
}
void getData()
{
cout << "The data in the all array elements of size " << size << ": \n";
for (int i = 0; i < size; i++)
{
cout << arr[i] << "\n";
}
}
~Array()
{
delete[] arr;
}
};
int main()
{
int a[5] = {5, 4, 3, 2, 1};
Array obj1, obj2(7), obj3(5, a), obj4(obj3);
const Array objc(5, a);
obj4[3] = 9;
cout << obj4[3] << endl;
cout << objc[4] << endl;
return 0;
}