-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathAbstractOperation.java
More file actions
63 lines (48 loc) · 970 Bytes
/
AbstractOperation.java
File metadata and controls
63 lines (48 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package u001;
/**
* Created by HuGuodong on 2019/11/9.
*/
public abstract class AbstractOperation {
private double a;
private double b;
public double getA() {
return a;
}
public void setA(double a) {
this.a = a;
}
public double getB() {
return b;
}
public void setB(double b) {
this.b = b;
}
public abstract double getResult();
}
class OperationAdd extends AbstractOperation {
@Override
public double getResult() {
return getA() + getB();
}
}
class OperationSub extends AbstractOperation {
@Override
public double getResult() {
return getA() - getB();
}
}
class OperationMult extends AbstractOperation {
@Override
public double getResult() {
return getA() * getB();
}
}
class OperationDiv extends AbstractOperation {
@Override
public double getResult() {
if (getB() == 0) {
throw new IllegalArgumentException("b can not be zero.");
}
return getA() / getB();
}
}