OnJava8-Examples/reuse/Detergent.java

49 lines
1.3 KiB
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// reuse/Detergent.java
2020-10-07 13:35:40 -06:00
// (c)2020 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2016-01-25 18:05:55 -08:00
// Inheritance syntax & properties
2015-06-15 17:47:35 -07:00
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:
Cleanser dilute() apply() Detergent.scrub() scrub()
foam()
2015-06-15 17:47:35 -07:00
Testing base class:
Cleanser dilute() apply() scrub()
2015-09-07 11:44:36 -06:00
*/