(String[] args)
| 12 | public void scrub() { append(" scrub()"); } |
| 13 | @Override public String toString() { return s; } |
| 14 | public static void main(String[] args) { |
| 15 | Cleanser x = new Cleanser(); |
| 16 | x.dilute(); x.apply(); x.scrub(); |
| 17 | System.out.println(x); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | public class Detergent extends Cleanser { |