Question

In: Computer Science

C++ Often times a user has more than one account at the bank and managers have...

C++

Often times a user has more than one account at the bank and managers have asked to view the account with the largest balance first. We already have a handy utility function that is used for finding the maximum of two ints.

int max(int a, int b) {
    if (b > a) {
        return b;
    } else {
        return a;
    }

}

How can we make a generic version? As a first step lets start by using pass by reference, since that will be more efficient when dealing with objects.

int &max(int &a, int &b) {
    if (b > a) {
        return b;
    } else {
        return a;
    }

}

For this problem create a generic version of the pass by reference max function above. Put it in a new header file called util.h, the purpose of the header is to have a collection of generic utility functions that can be used in many different places.

The function you write needs to be generic (not hard coded to only work with Account), but you should test that it does work with Account. You can test it in main() or in a unit test.

Solutions

Expert Solution

Hey mate, to make a generic version of above function we can use Templates in C++.Template is a simple and yet very powerful tool in C++. The simple idea is to pass data type as a parameter so that we don’t need to write the same code for different data types.

Let's see how to declare a template function -

A function template starts with the keyword template followed by template parameter/s inside < > which is followed by function declaration.

template <typename T>         
T someFunction(T arg)
{
  // function body
}

C++ adds two new keywords to support templates: ‘template’ and ‘typename’. The second keyword can always be replaced by keyword ‘class’.

In the above code, T is a template argument that accepts different data types (i.e. int, char, float, etc.) and then performs the operation defined in the function body.

When, an argument of a data type is passed to someFunction( ), compiler generates a new version of someFunction() for the given data type.

for example-

Generic version of pass by reference max() function with testing code -

#include <iostream>
using namespace std;

template <typename T>
T max(T &a, T &b)
{
    if (b > a) {
        return b;
    } 
    else {
        return a;
    }
}

int main()
{
    float account1=230000;    // balance in account 1
    float account2=156200;    // balance in account 2
    cout<< max<float>(account1, account2);     // print maximum account balance
    return 0;
    
}

Output -

230000


Related Solutions

The availability of bank credit is often more important to a small firm than to a...
The availability of bank credit is often more important to a small firm than to a large one. Why? Answer must be more than 200 words.
c++ The above Account class was created to model a bank account. An account has the...
c++ The above Account class was created to model a bank account. An account has the properties (keep the properties private) account number, balance, and annual interest rate, date created, and functions to deposit and withdraw. Create two derived classes for checking and saving accounts. A checking account has an overdraft limit, but a savings account cannot be overdrawn. Define a constant virtual toString() function in the Account class and override it in the derived classes to return the account...
To prevent corruption, why , top managers should not be given more than one approval authority?
To prevent corruption, why , top managers should not be given more than one approval authority?
1. State one of the reasons, why cancer does not occur more often than it already...
1. State one of the reasons, why cancer does not occur more often than it already does. 2. State one of the four general ways, a proto-oncogene is turned in to an oncogene.
is it possible to have more than one ellipse on python turtle.
is it possible to have more than one ellipse on python turtle.
What IRS form is used to put a tax refund into more than one account
What IRS form is used to put a tax refund into more than one account
There are over 5,000 banks in the United States—more than 10 times more per person than...
There are over 5,000 banks in the United States—more than 10 times more per person than in other industrialized countries. A recent study suggests that the long-run average cost curve for an individual bank is relatively flat. If Congress took steps to consolidate banks (merge some of the banks), thereby reducing the total number to 2,500, what would you expect to happen to average costs within the banking industry?
There are over 5,000 banks in the United States—more than 10 times more per person than...
There are over 5,000 banks in the United States—more than 10 times more per person than in other industrialized countries. A recent study suggests that the long-run average cost curve for an individual bank is relatively flat. If Congress took steps to consolidate banks, thereby reducing the total number to 2,500, what would you expect to happen to costs within the banking industry? Please provide a detailed explanation in terms of what long-run average cost curve for the individual bank...
There are over 5,000 banks in the United States—more than 10 times more per person than...
There are over 5,000 banks in the United States—more than 10 times more per person than in other industrialized countries. A recent study suggests that the long-run average cost curve for an individual bank is relatively flat. If Congress took steps to consolidate banks, thereby reducing the total number to 2,500, what would you expect to happen to costs within the banking industry? Please provide a detailed explanation in terms of what long-run average cost curve for the individual bank...
Wholesalers often provide reduced prices on goods if the customer purchases more than one item. Your...
Wholesalers often provide reduced prices on goods if the customer purchases more than one item. Your company wants to create a program that customers can use to determine the cost of their purchase. Quantity 0 ≤ q < 10 10 ≤ q < 100 100 ≤ q < 1000 1000 ≤ q Price $15.00 per unit $10.00 per unit + $50.00 $7.50 per unit + $300.00 $2.00 per unit + $5,080.00 Your program should prompt the user for the number...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT