Create 2 classes in same package
Product.java
productId, name, price
ProductImpl.java
create a set in this and try to add objects of product. You should write this exercise such that it should not allow the duplicate products to be added into the set(equal productId).
Hint: override equals & hashcode method
Ads