Chapter 14: Problem 6
Write a simple function template for predicate function isEqualto that compares its two arguments of the same type with the equality operator \((==)\) and returns true if they are equal and false if they are not equal. Use this function template in a program that calls isEqualto only with a variety of built-in types. Now write a separate version of the program that calls isEqualTo with a user-defined class type, but does not overload the equality operator. What happens when you attempt to run this program? Now overload the equality operator (with the operator function) operator==. Now what happens when you attempt to run this program?
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.