I have been stuck here for many a day. I keep getting Null Point Errors or something of the sort and I understand ish why I do but I cannot see a way out of it.
package com.codegym.task.task06.task0621;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
Cat relations
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
Cat noParent = new (Cat) null;
//noParent = null;
String grandfatherName = reader.readLine();
Cat catGrandfather = new Cat(grandfatherName, noParent, noParent);
String grandmotherName = reader.readLine();
Cat catGrandmother = new Cat(grandmotherName, noParent, noParent);
String fatherName = reader.readLine();
Cat catFather = new Cat(fatherName, noParent, catGrandfather);
String motherName = reader.readLine();
Cat catMother = new Cat(motherName, catGrandmother, noParent);
String sonName = reader.readLine();
Cat catSon = new Cat(sonName, catMother, catFather);
String daughterName = reader.readLine();
Cat catDaughter = new Cat(daughterName, catMother, catFather);
System.out.println(catGrandfather);
System.out.println(catGrandmother);
System.out.println(catFather);
System.out.println(catMother);
System.out.println(catSon);
System.out.println(catDaughter);
}
public static class Cat {
private String name;
private Cat mother;
private Cat father;
Cat() {
}
Cat(String name, Cat mother, Cat father) {
this.name = name;
this.mother = mother;
this.father = father;
}
/*
Cat(String name, Cat parent, boolean sex){
this.name = name;
if (sex == true)
this.father = parent;
this.mother = null;
else
this.mother = parent;
this.father = null;
}
*/
@Override
public String toString() {
if (mother == null)
return "The cat's name is " + name + ", no mother, " + father.name + " is the father";
else if (father == null)
return "The cat's name is " + name + " " + mother.name + " is the mother, no father";
else
return "The cat's name is " + name + " " + mother.name + " is the mother, " + father.name + " is the father";
}
}
}