Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Kristian Gausel
Kristian Gausel
14,661 Points

Why static inner class?

Can someone explain why we need a static inner class ?

The answer I could find is that static inner classes can not access the parent class' non-static field variables and methods.

1 Answer

Hi Kristian,

There is no such thing as a static inner class; per Java's own documentation, "Nested classes are divided into two categories: static and non-static. Nested classes that are declared static are called static nested classes. Non-static nested classes are called inner classes."