<< Chapter < Page Chapter >> Page >
In Java, besides having fields and methods, a class can also have other classes as members. Just like fields and methods, a class member of can be static or non-static. A non-static class member is called an inner class. Inner class is a programming construct based on the powerful concept of closure prevalent in the functional programming paradigm. It allows on-the-fly creation of objects, which can communicate transparently with the enclosing object inside of which they come into existence. We illustrate the rationale and use of inner classes via a progression from top level helper classes to named static nested classes, to non-static named classes, and to anonymous inner classes with dynamic on-the-fly instantiation.

1. helpers are the variants

Consider again the familiar problem of computing a String representation of an IList that displays a comma-separated list of its elements delimited by a pair of matching parentheses. We have seen at least one way to compute such a String representation using a visitor called ToStringAlgo . Below are three different algorithms, ToString1 , ToString2 and ToString3 , that compute the same String representation.

Main Visitor ToString1 Tail-recursive helper ToString1Help
package listFW.visitor; import listFW.*;public class ToString1 implements IListAlgo {public static final ToString1 Singleton = new ToString1();private ToString1() {} public Object emptyCase(IMTList host, Object... nu) { return "()";}public Object nonEmptyCase( INEList host, Object... nu) {return host.getRest().execute( ToString1Help.Singleton,"(" + host.getFirst()); }} /** * Helps ToString1 compute the String* representation of the rest of the list. * It takes as input the accumulated* string representation of the preceding * list. This accumulated string contains* the left most parenthesis and all the * elements of the preceding list, each* separated by a comma. */class ToString1Help implements IListAlgo { public static final ToString1HelpSingleton = new ToString1Help(); private ToString1Help() {}public Object emptyCase( IMTList host, Object... acc) {return acc[0] + ")";}public Object nonEmptyCase( INEList host, Object... acc) {return host.getRest().execute(this, acc[0]+ ", " + host.getFirst());} }
Main Visitor ToString2 Tail-recursive helper ToString2Help
package listFW.visitor; import listFW.*;public class ToString2 implements IListAlgo {public static final ToString2 Singleton = new ToString2();private ToString2() {}public Object emptyCase(IMTList host, Object... nu) {return "()"; }public Object nonEmptyCase(INEList host, Object... nu) {return host.getRest().execute( ToString2Help.Singleton,host.getFirst().toString()); }} /** * Helps ToString2 compute the Stringrepresentation of the rest of the list. */class ToString2Help implements IListAlgo { public static final ToString2HelpSingleton = new ToString2Help(); private ToString2Help() {}public Object emptyCase( IMTList host, Object... acc) {return "(" + acc[0]+ ")"; }public Object nonEmptyCase( INEList host, Object... acc) {return host.getRest().execute(this, acc[0]+ ", " + host.getFirst());} }

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Principles of object-oriented programming. OpenStax CNX. May 10, 2013 Download for free at http://legacy.cnx.org/content/col10213/1.37
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Principles of object-oriented programming' conversation and receive update notifications?

Ask