Take a look at Effective Java 2nd edition: Item 22: Favor static member classes over nonstatic
On Wed, Mar 27, 2013 at 9:05 PM, Ted Yu <[email protected]> wrote: > See > http://stackoverflow.com/questions/1353309/java-static-vs-non-static-inner-class > > I believe Josh Bloch covers this in his famous book. > > > On Wed, Mar 27, 2013 at 9:01 PM, Sai Sai <[email protected]> wrote: > >> In some examples/articles sometimes they use: >> public static class MyMapper >> >> and sometimes they use >> >> public class MyMapper >> >> When/why should we use static vs normal class. >> >> Thanks >> Sai >> > >
