package test; /** * @Author: wei1 * @Date: Create in 2019/1/15 21:00 * @Description: */ public class Father { public void show1() { System.out.println("public father show1"); } protected void show2() { System.out.println("public father show2"); } private void show3() { System.out.println("public father show3"); } }