package com.casic.accessControl.tmp; /** * Created by lenovo on 2016/12/21. */ public class Father { public void print(){ System.out.println("this is father print"); } public void test(){ System.out.println("this is Father test method"); } }