/* * 在定义的类上加上修饰符 final * 类是最终类 不能有子类 不能被继承 * 但是使用方式 没有变化 创基对象 调用方法 * */public final class Fu { public void show(){ System.out.println("父类的最终方法"); }}