Answer Posted / qamrun nisa
when an inner class is defined it is a member of the outer
class in much the same way as other members like attributes,
methods and constructors. When we access private data
members of the outer class, the JDK compiler creates
package-access member functions in the outer class for the
inner class to access the private members. This leaves a
security hole.
In general we should avoid using inner classes. Use inner
class only when an inner class is only relevant in the
context of the outer class and/or inner class can be made
private so that only outer class can access it. Inner
classes are used primarily to implement helper classes like
Iterators, Comparators etc which are used in the
context of an outer class.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is a control variable example?
What are the restrictions imposed by a Security Manager on Applets?.
How do you sort a set in java?
What Is Query Throttling in java?
What are the benefits of operations in java?
What is an example of a constant variable?
What is the purpose of sizeof operator?
What is comparable and comparator interface? List their differences
What is a variable in java?
Can we clone singleton object?
What is an abstract class and what is it’s purpose?
What is the use of math abs in java?
What is the final keyword?
What is variable in java?
Which java ide is used the most?