Question: Consider a following class: public class Cell { public int row; public int col; Write an equals() method for this class. Your method should accepy
Consider a following class:
public class Cell {
public int row;
public int col;
Write an equals() method for this class. Your method should accepy an object as its parameter (as shown below) and should return true only if other is a Cell AND has the same values for row and col.
public Boolean equals (Object other){
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
