用Java语言在业务层接口和实现类分别写一个方法,方法要求从student对象中获取math,chinese,english,physics,chemistry,biology的值并求和,类型为Double
时间: 2023-05-12 16:06:57 浏览: 142
使用Java实现不同流程计算求和
好的,这是一个比较简单的问题,以下是代码示例:
在业务层接口中:
```java
public interface StudentService {
Double calculateTotalScore(Student student);
}
```
在实现类中:
```java
public class StudentServiceImpl implements StudentService {
@Override
public Double calculateTotalScore(Student student) {
Double totalScore = student.getMath() + student.getChinese() + student.getEnglish() + student.getPhysics() + student.getChemistry() + student.getBiology();
return totalScore;
}
}
```
这个方法会从student对象中获取math,chinese,english,physics,chemistry,biology的值并求和,类型为Double。
阅读全文