Ребят прошу объясните что за переменная "Cat anotherCat.". Намекните на что обратить внимания, для правильного решение и где, и как можно сократить и сделать более читабельней код.
package com.javarush.task.task05.task0502;
/*
Реализовать метод fight
*/
public class Cat {
public int age;
public int weight;
public int strength;
public Cat() {
}
public boolean fight(Cat anotherCat) {
int c1 = 0, c2 = 0;
if (this.age > anotherCat.age){
c1++;
}else c2++;
if (this.weight > anotherCat.weight){
c1++;
}else c2++;
if (this.strength > anotherCat.strength){
c1++;
}else c2++;
if (c1 < c2 || c1 == c2) {
return false;
}else
return true;
}
public static void main(String[] args) {
}
}