What is benefit of using an inner static class? Where should I prefer it over other options?
And how is its memory allocated?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the inner class is static, you don’t need an instance of the outer class to instantiate it.
If the inner class is public, it’s basically just a name-scoping technique for highlighting the fact that the class “belongs” to the outer class.
If you make the inner class private however, it can’t be used outside of that class.