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?

Interfaces and generics, In this assignment, you are provided with an inter...

In this assignment, you are provided with an interface that contains a generic type. You are asked to create two classes that implement this interface. A. The Sequenced Interfac

Illustrate dynamic vs. static class loading?, 1. "Classes are statically lo...

1. "Classes are statically loaded with Java's "new" operator." This would imply that static methods could be executed without the class being loaded. 2. "Unlike the static loa

Board Coloring, BoardColoring.java program for 2D MXM matrix

BoardColoring.java program for 2D MXM matrix

What is event handler works, What is Event Handler works? An event hand...

What is Event Handler works? An event handler is a command which is used to call a function when an event happens, such as the user clicking a button or mouse.

Instance of a SyntaxTree object is null. I don''t know why.?, I have been w...

I have been working on my compiler''s parser now. And for some reason i cant make my parse tree printer to work. SyntaxTree keeps on showing as null when i invoke the print() metho

What do you understand by instantiating an object, Question: (a) To be ...

Question: (a) To be considered object-oriented(OO), a language should support abstraction, encapsulation, inheritance and polymorphism. Explain briefly each of the terms in

How we can changing the implementation, How we can changing the Implementat...

How we can changing the Implementation ? Suppose the Car class requires to be used in a simulation of New York City traffic in that each actual car on the street is represente

Intro to Programming, Overall Requirements Every phone number is broken up ...

Overall Requirements Every phone number is broken up into sections as shown below: Country Code Area Code Prefix Line Number 1 919 882 5000 Write a program to separate out a ph

I need integrate template to java system, I need integrate template to Java...

I need integrate template to Java system Project Description: We have around 60 files for a java backend and want to implement a template, the system is complete it requires

What is the use of forwardaction, Normal 0 false false fals...

Normal 0 false false false EN-IN X-NONE X-NONE MicrosoftInternetExplorer4

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