1 / 9

The Decorator Pattern Decorators in Java I/O classes

The Decorator Pattern Decorators in Java I/O classes. Decorator Pattern context. You want to attach additional functionality to an (existing) class dynamically… …without having to resort to sub-classing the existing class We don’t want a class explosion

pascha
Download Presentation

The Decorator Pattern Decorators in Java I/O classes

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Decorator PatternDecorators in Java I/O classes SE-2811 Dr. Mark L. Hornick

  2. Decorator Pattern context • You want to attach additional functionality to an (existing) class dynamically… • …without having to resort to sub-classing the existing class • We don’t want a class explosion • We want to allow classes to be easily “extended” to incorporate new behavior without modifying existing code.

  3. + doMoreStuff() SE-2811 Dr. Mark L. Hornick

  4. How are decorators useful? • Decorators have the same super-type as the objects they decorate. • Why is this useful? • One or more decorators can be used to wrap an object. • Why is this useful?

  5. The java.io package contains dozens of classes OutputStream, FileOutputStream, PipedOutputStream, DataOutputStream, ObjectOutputStream, PrintStream, PrintWriter, … Understanding the associations between them just by reading the Javadoc API is difficult SE-2811 Dr. Mark L. Hornick

  6. Knowing that the input stream classes are based on the Decorator pattern can make things easier <<deprecated>> SE-2811 Dr. Mark L. Hornick

  7. The Decorator pattern applied to output streams Only for error propagation in my Java version SE-2811 Dr. Mark L. Hornick

  8. You can create custom stream decorators by extending FilterOutputStream and FilterInputStream • Exercise SE-2811 Dr. Mark L. Hornick

  9. Comparison of Decorator with Strategy SE-2811 Dr. Mark L. Hornick

More Related