-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDetergent.java
More file actions
46 lines (35 loc) · 949 Bytes
/
Detergent.java
File metadata and controls
46 lines (35 loc) · 949 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
//: reusing/Detergent.java
package com.reusing07;
class Cleanser {
private String s = "cleaner";
public void append(String a) { s += a; }
public void dilute() { append(" dilute() "); }
public void apply() { append(" apply() "); }
public void scrub() { append(" scrub() "); }
public String toString() { return s; }
public static void main(String[] args) {
Cleanser x = new Cleanser();
x.dilute(); x.apply(); x.scrub();
System.out.println(x);
}
}
public class Detergent extends Cleanser{
//private String s = "Detergent";
// Change a method
public void scrub() {
append(" Detergent.scrub() ");
super.scrub();
}
// Add the method to the interface
public void foam() { append(" foam() "); }
public static void main(String[] args) {
// TODO Auto-generated method stub
Detergent x = new Detergent();
x.dilute();
x.apply();
x.scrub();
x.foam();
System.out.println(x);
Cleanser.main(args);
}
}