April 2006
Intermediate to advanced
480 pages
8h 32m
English
WHEN YOU DEVELOP a class, you usually provide class constructors to let clients of your class instantiate it. Sometimes, though, a client that needs an object does not or should not know which of several possible classes to instantiate.
The intent of FACTORY METHOD is to let a class developer define the interface for creating an object while retaining control of which class to instantiate.
The ITERATOR pattern provides a way to access the elements of a collection sequentially. (See Chapter 28, ITERATOR.) But the way iterators are created often uses a FACTORY METHOD. Java JDK version 1.2 introduced a Collection interface that includes an iterator() method; all collections implement ...
Read now
Unlock full access