package com.test; import java.io.FileReader; public class Test2 { public static void main(String[] args) throws Exception { Father father = new Father(); father.test1(); father.test2(); } } class Father{ private Son son = null; public Father() { this…