blob: 14a82efb98b9f1c0153bb8cbae07fe0e71d670e2 (
plain) (
blame)
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
64
65
66
67
68
|
import java.util.regex.Pattern;
class Automobile
{
private static final Pattern licensePattern = Pattern.compile("[0-9A-Z]+");
private double fuel;
private double speed;
private String license;
public double getFuel()
{
return fuel;
}
public double getSpeed()
{
return speed;
}
public String getLicense()
{
return license;
}
public void setFuel(double fuel)
{
if (fuel < 0)
throw new IllegalArgumentException(
"fuel must be nonnegative, instead got " + fuel);
this.fuel = fuel;
}
public void setSpeed(double speed)
{
this.speed = Math.max(0, speed);
}
public void setLicense(String license)
{
if (!licensePattern.matcher(license).matches())
throw new IllegalArgumentException("invalid license: " + license);
this.license = license;
}
public Automobile(double f, double s, String l)
{
setFuel(f);
setSpeed(s);
setLicense(l);
}
public void accelerate(double v)
{
if (v < 0)
throw new IllegalArgumentException(
"acceleration must be nonnegative, instead got " + v);
if (fuel > 0)
setSpeed(speed + v);
}
public void decelerate(double v)
{
if (v < 0)
throw new IllegalArgumentException(
"deceleration must be nonnegative, instead got " + v);
setSpeed(speed - v);
}
}
|