【1】重载:
public class Demo { public void a() throws Exception{ } public void a(int age)throws ArithmeticException{ } }
【2】重写:
子类<=父类