Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Java Expert


Home >> Java

 

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

 

 

Java, Programming

  • Category:- Java
  • Reference No.:- M9504964

Have any Question?


Related Questions in Java

Assignment - method in our madnessthe emphasis for this

Assignment - "Method in our Madness" The emphasis for this assignment is methods with parameters. In preparation for this assignment, create a folder called Assign_3 for the DrJava projects for the assignment. A Cityscap ...

Assessment -java program using array of Assessment -JAVA Program using array of objects

Assessment -JAVA Program using array of objects Objectives This assessment item relates to the course learning outcomes as stated in the Unit Profile. Details For this assignment, you are required to develop a Windowed G ...

Assessment database and multithread programmingtasktask 1

Assessment: Database and Multithread Programming Task Task 1: Grade Processing University grading system maintains a database called "GradeProcessing" that contains number of tables to store, retrieve and manipulate stud ...

Overviewyou are required to use java se 80 and javafx to

Overview You are required to use Java SE 8.0 and JavaFX to develop a Graphical User Interface (GUI) for the FlexiRent rental property management program created in Assignment 1. This assignment is designed to help you: 1 ...

In ruby the hash class inherits from enumerable suggesting

In Ruby, the Hash class inherits from Enumerable, suggesting to a programmer that Hashes are collections. In Java, however, the Map classes are not part of the JCF (Java Collections Framework). For each language, provide ...

Assignment game prototypeoverviewfor this assessment task

Assignment: Game Prototype Overview For this assessment task you are expected to construct a prototype level/area as a "proof of concept" for the game that you have designed in Assignment 1. The prototype should function ...

Can someone help me please with those question1what is the

Can someone help me please with those question 1:what is the best data type for student id datatime,currency,number,decimal 2:which relationshipis preferable? one to one,one to many,many to many 3:if you add table A's pr ...

Overviewyou are required to use java se 80 and javafx to

Overview You are required to use Java SE 8.0 and JavaFX to develop a Graphical User Interface (GUI) for the FlexiRent rental property management program created in Assignment 1. This assignment is designed to help you: 1 ...

Can someone kindly help me to consider whether java

Can someone kindly help me to consider whether Java provides the facility of operator overloading? If it does, may you kindly describe how overloading operators can be accomplished? If not, may you kindly describe why yo ...

Assessment instructionsin this assessment you will complete

Assessment Instructions In this assessment, you will complete the programming of two Java class methods in a console application that registers students for courses in a term of study. The application is written using th ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As