|
[php]
public class Beverage
{
public static void main(String args[])
{
HotDrink hd=new HotDrink();
ColdDrink cd=new ColdDrink();
}
}
public class HotDrink extends Beverage
{
}
public class ColdDrink extends Beverage
{
Beer br=new Beer();
}
public class Beer extends ColdDrink
{
}
[/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
|