Question: Can you please help me with this ? its for C++ 1. Write a class ComplexNumber(declaration and implementation) that has the following private data members:
Can you please help me with this ? its for C++

1. Write a class ComplexNumber(declaration and implementation) that has the following private data members: a) an int m real b) an int m_imaginary c) a static int s_count (used to track how many objects of type Complex Number exist). and the following public member functions: a) a Default ctor that leaves m_real and m_imaginary uninitialized. b) A Copy ctor that copies from one ComplexNumber object to the newly instantiated one. c) An assignment operator that assigns from one ComplexNumber object to the calling object d) An operator+ function that sums 2 complex numbers (resulting ComplexNumber is the sum of real parts and the sum of imaginary parts). e) A static method to get the s_count data that are private (should be named GetCount). and also uses an insertion operator
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
