Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
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(){...}
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
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.
class Outside {
static class Inside{ }
Outside.class ,Outside$Inside.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
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.
void first() {
final int i = 5;
class Inside{}
Outside.class , Outside$1$Inside.class
Anonymous
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
button.addActionListener ( new ActionListener()
{
public void actionPerformed(ActionEvent e) { System.out.println("The button was pressed!");
});
Outside.class , Outside$1.class
You should override the hashCode() and equals() functions from the Object class. The default implementation of the hashcode() and equals(), which are inherited from the java.
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
Instructions: Please make sure your solutions are original, in your own words, expressing your own ideas. Any copying from others' home-works, text books or online sources will
Explain The Methods of java.lang.Object? java.lang.Object gives a number of methods that are general to all objects. toString() is the most general such method. Because the def
Why we Avoiding Short Circuits ? If you need all of your boolean expressions evaluated regardless of the truth value of each, then you can use & and | instead of && and ||. The
how to write a program to assign value of variable age and print if person is major.
Design pattern : As you may look from the diagram given below, containers collect components. Sometimes you want to accumulate a container to another container. So, a container co
In this programming assignment, you are going to implement the simple distributed ticket reservation system (DTRS) from Assignment 1 in CORBA using Java IDL. In addition to the thr
Suppose we have a big project. Draw hierarchy of the people involved in the project? Executive Team CEO, COO, CMSO Quality Architecture Team Business Development Team Technolog
Need to develop Chat application for j2me and I want Image Processing code Project Description: We want a chat application for a community website. Image processing and co
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!
whatsapp: +91-977-207-8620
Phone: +91-977-207-8620
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd