搜索结果
查询Tags标签: 程序清单,共有 3条记录-
Spring实战(第5版)程序清单1.6运行失败解决
报错: java.lang.AssertionError: Response content java.lang.AssertionError: Response content Expected: a string containing "Welcome to..."but: was "" 断言错误:响应内容 预期:一个包含"Welcome to..."的字符串 但(实际上是):是&q…
2021/7/17 14:38:40 人评论 次浏览 -
Spring实战(第5版)程序清单1.6运行失败解决
报错: java.lang.AssertionError: Response content java.lang.AssertionError: Response content Expected: a string containing "Welcome to..."but: was "" 断言错误:响应内容 预期:一个包含"Welcome to..."的字符串 但(实际上是):是&q…
2021/7/17 14:38:40 人评论 次浏览 -
(IllegalArgumentException异常)修改程序清单10-2中的Loan类,如果贷款总额、利率、年数小于或等于零,则抛出IllegalArgumentException异常
public class Loan {private double annualInterestRate;private int numberOfYears;private double loanAmount;private java.util.Date loanDate;public Loan() {this(2.5, 1, 1000);}public Loan(double annualInterestRate, int numberOfYears, double loanAmount) {t…
2021/5/16 20:25:42 人评论 次浏览