Home | Gaming | Programming | Play Online | Submit Article | Submit BETA | Advertise | Contact | Keyword Query | Trade Games
Games++ Games & Game Programming

GAMES++
Games++ Home
Games++ Gaming
Games++ Programming
Beta Testing Games
Free Online Games
Hints & Cheats

BROWSER UTILITIES
E-mail This Page
Add to Favorites

SITE SEARCH

Web Games++

AFFILIATES
Cheat Codes
Trickster Wiki
Game Ratings
Trade Games
Gameboy Cheats
PlayStation Cheats
BlackBerry Games
Photoshop Tutorials
Illustrator Tutorials
ImageReady Tutorials
Tutorial Bus
Fresh Tutorials

ADVERTISEMENT

Access An Inner Class From Outside

Java: How To

class Outer 
{
   public class Inner 
   {
      public void hello()
      {
         System.out.println("Hello from Inner()");
      }
   }
}

public class Howto 
{
   public static void main(String[] args) 
   {
      Outer outer = new Outer();
      outer.new Inner().hello();
   }
}

Copyright © 1998-2007, Games++ All rights reserved. | Privacy Policy