logo - 刷刷题
下载APP
【简答题】

自定义异常,数值不能为负数。public class NoScoreException extends RuntimeException { public NoScoreException() { super(); } public NoScoreException(String message) { super(message); }}public class Student {private String name;private int score;public Student() {super(); }public Student(String name,int score){ setName(name); setScore(score); }public String getName() {return name; }public void setName(String name) {this.name = name; }public int getScore() {return score;}public void setScore(int score) {// 判断,如果score为负数,就抛出NoScoreException,异常信息为:分数不能为负数:xxx.if(score <0){ }this.score = score; }}

举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三

【单选题】(南京航空航天2012)普通年金终值系数的基础上,期数加1、系数减1所得的结果,数值上等于( )。

A.
普通年金现值系数
B.
即付年金现值系数
C.
普通年金终值系数
D.
即付年金终值系数