PLAY PODCASTS
019: Effective Java for Android developers : Item 4
Episode 19

019: Effective Java for Android developers : Item 4

Singer and Android developer Donn Felker explores Joshua Bloch's fourth Item: Enforce noninstantiability with a private constructor. Stay tuned, cause we got more of these quick ones coming.

Fragmented - AI Developer Podcast · Spec

October 15, 20156m 33s

Audio is streamed directly from the publisher (cdn.simplecast.com) as published in their RSS feed. Play Podcasts does not host this file. Rights-holders can request removal through the copyright & takedown page.

Show Notes

Singer and Android developer Donn Felker explores Joshua Bloch's fourth Item: Enforce noninstantiability with a private constructor.

Stay tuned, cause we got more of these quick ones coming.

Enforce noninstantiability with a private constructor.

Examples where you don't want class to be instantiated

  1. class that groups static methods and static fields (Util like classes think java.lang.Math/java.util.Arrays)
  2. class that groups static methods (including factory methods) for objects implementing specific interfaces (think java.util.Collections)
  3. class that group methods on a final class (vs. extending the class)

Considerations

  • Makes no sense to instantiate such "Util" classes
  • Private constructors prevent instantiation
  • Important side effect: prevents subclassing

Contact us: