I was asked this question recently during my job interview, and I couldn't answer it. So, what is the most used pattern in java.io and how is it used? What are other patterns used in common java libraries?
feedback
|
|
I guess they wanted to hear about the Decorator pattern which can be found in the various Streams, Readers and Writers. Other patterns (small selection):
I'm pretty sure that one can find examples for almost all patterns listed on this wikipedia page in the Java SDK. | ||||
|
feedback
|
|
Other patternsAnti-patternsTo add to what others have said, these are several anti-patterns in the Java libraries: Antipattern: inheritance instead of compositionFrom Effective Java 2nd Edition, Item 16: Favor composition over inheritance:
Related questions
Antipattern: constant interfacesFrom Effective Java 2nd Edition, Item 19: Use interfaces only to define types:
Related questions
Antipattern: telescoping constructor and JavaBeans patternsFrom Effective Java 2nd Edition, Item 2: Consider a builder when faced with many constructor parameters (excerpt online):
Bloch recommends using a builder pattern instead. Related questions | ||||
|
feedback
|
|
The decorator pattern is often used in java i/o. Example
| |||
|
feedback
|
|
Decorator pattern, I think. To create all flavors of Readers, Writers, input and output streams. See this, for example. | |||
|
feedback
|