private nested classes - arrays and accessing | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

private nested classes - arrays and accessing

if you declare a nested class as private, does it get treated like a private variable in the container class? Also, can you create an array of a nested class?

9th Feb 2017, 5:37 AM
Timothy Gonzales
Timothy Gonzales - avatar
1 Answer
0
Language? Usually a private nested class is accessible only from its container class. There are few exceptions to this depending on the language. The nested class will have access to all the containing classes variables and methods in the same way the a method within the containing class would. All that being said you still typically treat the class in the containing class as any other class. You Still need to create a new instance of it or use it's static methods utilizing the the Class.method() syntax.
9th Feb 2017, 6:06 AM
ChaoticDawg
ChaoticDawg - avatar