Question: dont understand how to finish off this first part. c++ please 1. You will create an Account class that defines public and private data members

1. You will create an Account class that defines public and private data members and member functions, including constructors/destructor, an overloaded operator etc. Public member functions - A default constructor, a destructor, a copy constructor, and a copy assignment. - Mutators/accessors for the private data members. - Deposit for depositing amount into the account. - Withdraw for withdrawing amount from the account. - An overioaded operator tw to support a transfer from one bank account to another. For example, this operation may be done using the following code: - descAcet i= arcAcot where dest:Acct is an object of a destination bank account and areAcet is an object of a source bank account. You will prompt the user for and read in the actual amount of money to transfer. See sample output. Private data members - Integer pointer account id. This will hold the address of dynamic memory containing account id. - String customer name. - Float balance. a. Any other data member (s), and/or methods/mutators/accessors needed for your
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
