Write constructors in c++.. pls help?
-
Below shows a partial definition of the BankAccount class. class BankAccount { int accountNumber; char* accountName; double balance; double overdraftLimit; }; Need to write three constructors for the above BankAccount class. The specifications of the constructors are: (i) A parameterised constructor with the necessary parameters to initialise all the data members of a BankAccount instance. (ii) A default constructor that will initialise the data member accountNumber to 215, accountName to “John Tan”, balance to $1234.56 and overdraftLimit = $5299.99. (iii) A copy constructor that will create a new BankAccount instance and copy the values of the data members from the existing BankAccount instance to the new BankAccount instance. (iv) Write a main function to demonstrate how each of these three constructors is being used.
-
Answer:
This C++ tutorial may help you:http://www.worldbestlearningcenter.com/index_files/c++_class_objects.htm
luke at Yahoo! Answers Visit the source
Other answers
This C++ tutorial may help you:http://www.worldbestlearningcenter.com/index_files/c++_class_objects.htm
Sovandara
Check this out. http://ideone.com/HCSbZ I hope this helps you. Cheers
Is this a homework that you're cheating on? If so, shame on you... But here's the answer(don't forget to add <iostream> and <cstring> header files): class BankAccount {//your class declaration int accountNumber; char* accountName; double balance; double overdraftLimit; public: BankAccount(int ac_no, double bal, char* AcName, double ODLim)//parameterised const { accountNumber=ac_no; balance=bal; overdraftLimit=ODLim; accountName=AcName; overdraftLimit=ODLim; } BankAccount()//default const { accountNumber=215; strcpy(accountName,“John Tan”); balance =1234.56; overdraftLimit = 5299.99; } BankAccount(BankAccount& BnkAcc)//copy const { accountNumber=BnkAcc.accountNumber; balance=BnkAcc.balance; accountName=BnkAcc.accountName; overdraftLimit=BnkAcc.overdraftLimit; } }; //main() function int main() { BankAccount bnk1;//calls default constr. BankAccount bnk2(2, 123.86, "WhoeverYouAre", 234.978);// calls parameterised constr. BankAccount bnk3(bnk2);//call copy constr return 0; }
Is this a homework that you're cheating on? If so, shame on you... But here's the answer(don't forget to add <iostream> and <cstring> header files): class BankAccount {//your class declaration int accountNumber; char* accountName; double balance; double overdraftLimit; public: BankAccount(int ac_no, double bal, char* AcName, double ODLim)//parameterised const { accountNumber=ac_no; balance=bal; overdraftLimit=ODLim; accountName=AcName; overdraftLimit=ODLim; } BankAccount()//default const { accountNumber=215; strcpy(accountName,“John Tan”); balance =1234.56; overdraftLimit = 5299.99; } BankAccount(BankAccount& BnkAcc)//copy const { accountNumber=BnkAcc.accountNumber; balance=BnkAcc.balance; accountName=BnkAcc.accountName; overdraftLimit=BnkAcc.overdraftLimit; } }; //main() function int main() { BankAccount bnk1;//calls default constr. BankAccount bnk2(2, 123.86, "WhoeverYouAre", 234.978);// calls parameterised constr. BankAccount bnk3(bnk2);//call copy constr return 0; }
Gee it's just me
Check this out. http://ideone.com/HCSbZ I hope this helps you. Cheers
MichaelInScarborough
Related Q & A:
- How to write a parser in C?Best solution by Stack Overflow
- How can i delete the links that posted on my status?it bothers my im to frends.pls help me delete that?Best solution by Yahoo! Answers
- Can't delete name off messenger address list, error code 40402,need help pls?Best solution by Yahoo! Answers
- I have to write a personal statement. Any help?Best solution by ucas.com
- Pls Help me understand how this integral is solved?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.