Creating and Destroying Objects
Part of a Series
Item 1: Consider static factory methods instead of constructors
Advantages:
Have names (multiple constructors with variable args)
Not required to create a new object each time they’re invoked (caching)
Can return an object of any...
techtenets.hashnode.dev6 min read