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?

Create an embedded javascript function, Given the following XHTML page: ...

Given the following XHTML page:   Create an embedded JavaScript function named getUserInfo that prompts the user with the following two questions after the XHTML page has loa

In programming what is an object, In programming, what is an object? Ob...

In programming, what is an object? Object is a named collection of properties (data and state) & methods (instructions, behaviour). Objects are key to understanding object-orie

Vigenere Cipher decryption unknown key, I need help writing this code eithe...

I need help writing this code either in java or in python. basically the steps are described here in this youtube video or">https://www.youtube.com/watch?v=LaWp_Kq0cKs or this is

What is jms message, An object that having the data being transferred among...

An object that having the data being transferred among JMS clients.

Write a bouncing ball game, Write a bouncing ball video game. The game is s...

Write a bouncing ball video game. The game is similar to the one described and depicted in Figure of the text book. The balls bounces within the screen where the two horizontal wal

Require assistance in java / grails support, require assistance in Java / G...

require assistance in Java / Grails support We have a project which requires continuous maintenance / support and occasional feature development. Its running on Java 1.7 / Grail

What is jsp page, A JSP page is a text-based document that having two types...

A JSP page is a text-based document that having two types of text: static template data, which can be expressed in any text-based format like HTML, SVG, WML, and XML, and JSP eleme

Programming, .Write a programme to create a webpage that prints the name of...

.Write a programme to create a webpage that prints the name of the STUDENT database in Wide Latin font and set the subtitle with description of the STUDENT to the screen. Set the

Application to control robot arm , I send you these files in order to make ...

I send you these files in order to make clear image about my task that I want you to design for me an application for PC that used to control robot arm via micro controller PIC18.

Introduction, the multiple of two number in java

the multiple of two number in java

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