View Single Post
Old Feb 14th, 2006, 8:50 PM   #9
Kilo
Expert Programmer
 
Kilo's Avatar
 
Join Date: Nov 2005
Location: In Pink Clam?
Posts: 542
Rep Power: 0 Kilo is an unknown quantity at this point
Send a message via AIM to Kilo
[php]
public class Beverage
{
public static void main(String args[])
{
HotDrink hd=new HotDrink();

ColdDrink cd=new ColdDrink();
}
}

public class HotDrink
{

}

public class ColdDrink
{
Beer br=new Beer();
}

public class Beer
{

}
[/php]
__________________
"When in Rome, Do as the Romans Do"
"Beauty is in the eye of the BEER holder"
"Save your breath your going to need it for your blow up doll later"

SearchLores.org
Kilo is offline   Reply With Quote