2015-09-07 11:44:36 -06:00
|
|
|
|
// reuse/Detergent.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// Inheritance syntax & properties.
|
|
|
|
|
|
|
|
|
|
class Cleanser {
|
|
|
|
|
private String s = "Cleanser";
|
|
|
|
|
public void append(String a) { s += a; }
|
|
|
|
|
public void dilute() { append(" dilute()"); }
|
|
|
|
|
public void apply() { append(" apply()"); }
|
|
|
|
|
public void scrub() { append(" scrub()"); }
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() { return s; }
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Cleanser x = new Cleanser();
|
|
|
|
|
x.dilute(); x.apply(); x.scrub();
|
2015-11-03 12:00:44 -08:00
|
|
|
|
System.out.println(x);
|
2015-06-15 17:47:35 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Detergent extends Cleanser {
|
|
|
|
|
// Change a method:
|
|
|
|
|
@Override
|
|
|
|
|
public void scrub() {
|
|
|
|
|
append(" Detergent.scrub()");
|
|
|
|
|
super.scrub(); // Call base-class version
|
|
|
|
|
}
|
|
|
|
|
// Add methods to the interface:
|
|
|
|
|
public void foam() { append(" foam()"); }
|
|
|
|
|
// Test the new class:
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Detergent x = new Detergent();
|
|
|
|
|
x.dilute();
|
|
|
|
|
x.apply();
|
|
|
|
|
x.scrub();
|
|
|
|
|
x.foam();
|
2015-11-03 12:00:44 -08:00
|
|
|
|
System.out.println(x);
|
|
|
|
|
System.out.println("Testing base class:");
|
2015-06-15 17:47:35 -07:00
|
|
|
|
Cleanser.main(args);
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
|
Cleanser dilute() apply() Detergent.scrub() scrub() foam()
|
|
|
|
|
Testing base class:
|
|
|
|
|
Cleanser dilute() apply() scrub()
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|