โ Back to Classes
Question 64
Product Compare by SKU (operator==)
Product Compare by SKU (operator==)
You are tracking products in a warehouse. Create a class Product with a private string sku. Requirements: 1) Constructor Product(string sku) 2) string getSku() const 3) Overload operator== so two Product objects are equal if their sku strings match Do NOT write a main function.
Expected Output:
match no match
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.