Explain nested classes (or outer and inner classes) in java?, JAVA Programming

Assignment Help:

 

In Java not all classes must be described separate from each other. You may put the definition of one class under the definition of another class. The class inside class is called an inner class and the enclosing class is called an outer class. So when you prepare an inner class, it is a member of the outer class in much the similar way as other members like attributes, constructors and methods.

 

Where should we need inner classes? Code without inner classes is hard to maintainable and readable. When you use private data members of the outer class, the JDK compiler provides package-access member functions in the outer class for the inner class to use the private members. That leaves a security hole. We could avoid it using inner classes. Use inner class only when an inner class is only in the context of the outer class and/or inner class may be prepared private so that only outer class can access it. Inner classes are needed primarily to implement helper classes like Comparators, Iterators etc which are needed in the context of an outer class.

 

Member inner class

Anonymous inner class

public class MyStack {

private Object[] items = null;

...

public Iterator iterator() {

return new StackIterator();

}

//inner class

class StackIterator implements Iterator{

...

public boolean hasNext(){...}

}

}

public class MyStack {

private Object[] items = null;

...

public Iterator iterator() {

return new Iterator {

...

public boolean hasNext() {...}

}

}

}

 

Class Type

Description

Example +

Class name

 

Outer

class

Package

member class or interface

Top level class. Only type JVM

can access.

//package scope

class Outside{}

 

Outside.class

Inner

class

static nested

class or interface

Defined within the context of the

top-level class. Must be static & can access static members of its having class. No relationship between the instances of outside and Inside classes.

//package scope

class Outside {

static class Inside{       }

}

 

Outside.class ,Outside$Inside.class

Inner

class

Member class

Defined within the context of

outer class, but non-static. Until an object of Outside class has

been started you can't create

Inside.

class Outside{

class Inside(){}

}

 

Outside.class , Outside$Inside.class

Inner

class

Local class

Defined within a part of code.

Can use final local variables and final method parameters. Only

visible within the part of code that defines it.

class Outside {

void first() {

final int i = 5;

class Inside{}

}

}

 

Outside.class , Outside$1$Inside.class

Inner

class

Anonymous

class

Just like local class, but no

name is used. Useful when only one instance is used in a

method. Most naturally used in

AWT/SWING event model, Spring framework hibernate call

back methods etc.

//AWT example

class Outside{

void first() {

button.addActionListener ( new ActionListener()

{

public void actionPerformed(ActionEvent e) { System.out.println("The button was  pressed!");

}

});

}

}

 

Outside.class , Outside$1.class

 

 


Related Discussions:- Explain nested classes (or outer and inner classes) in java?

Explain what is constructors, Explain what is constructors ? It is freq...

Explain what is constructors ? It is frequent the case in which overloaded techniques are essentially the similar except that one supplies default values for a few of the argum

Create a simple object based gui application, Objective: create a simple o...

Objective: create a simple object, put that object in a simple collection class, use that object and collection in a simple GUI application. Specification:  Consider a Librar

Prepare a game in corona, Prepare a Game in Corona (for Android and IOS) ...

Prepare a Game in Corona (for Android and IOS) Project Description: We are looking to prepare a game for mobile platform similar to Zombie Smasher for iOS and Android. Eve

Program, Write a program called Power that displays the positive powers of ...

Write a program called Power that displays the positive powers of 2. When the user enters the exponent at a prompt, the program displays 2 to that power. The program halts when the

Help !!, I''ve been trying to get this java program to work but im lost and...

I''ve been trying to get this java program to work but im lost and Im stuck ! The factorial of a positive integer N, denoted by N! N!=1*2*...*N Using subprograms and f unctions,c

Difference between composition and aggregation, Aggregation Comp...

Aggregation Composition Aggregation :  An   association   in  which  one  class refers to collection or a another class. This is a part of  a  who

Create an applet for the central museum, 1) Central museum is one of the fa...

1) Central museum is one of the famous tourist places in london. They ask comments from every customer visiting them.  For that, they maintained one register to store visitor;s com

Activity diagram, The statechart diagrams and activity diagram are related ...

The statechart diagrams and activity diagram are related in a sense that statechart diagram refers on object undergoing a transition process and an activity diagram refers on the f

Print the percentage of each nucleotide, 1. In this lab assignment we will ...

1. In this lab assignment we will be using the vim or emacs editor in addition to the commands we have already learned. Open a shell terminal and create a file named in your home d

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd