}
class Professor extends person { }
public class shiyan4_2 { }
运行结果是:
四、实验小结
通过这次试验熟悉了抽象类和接口的概念,掌握了抽象类和接口的定义方法,掌握了抽象类和接口的使用方法。
public static void main(String [] args){ }
assistant(float basepayment, int time, float moneypertime){ }
public float pay(){ }
return basepayment + time * moneypertime; this.basepayment = basepayment; this.time = time;
this.moneypertime = moneypertime;
实验五 异常抛出和捕获
一、实验目的
(1) 掌握异常的概念、异常的抛出、异常的处理的方法; (2) 学会在程序中用自定义异常处理实际问题; (3) 学会在程序中自己抛出异常和处理异常。
二、实验内容