jeudi 7 mai 2015
Polymorphie
Posted on 09:58 by verona
Hallo kann einer mir vllt bitte erklären wie die ausgabe : C C C C M D D D zustande kommt.
Kann nur teilweise das nachvollziehen..
Mfg
Hier der Code:
Kann nur teilweise das nachvollziehen..
Mfg
Hier der Code:
Java Code:
-
class Top
-
{
-
}
-
class Middle extends Top
-
{
-
}
-
class Bottom extends Middle
-
{
-
}
-
class Test
-
{
-
public static void run()
-
{
-
Top tt = new Top();
-
Top tm = new Middle();
-
Top tb = new Bottom();
-
Middle mb = new Bottom();
-
Bottom bb = new Bottom();
-
tm.f( tm );
-
tm.f( tt );
-
tb.f( tt );
-
tb.f( tm );
-
mb.f( bb );
-
mb.f( mb );
-
mb.f( new Middle() );
-
new Bottom().f( mb );
-
}
-
}
Polymorphie
Categories: Polymorphie
Inscription à :
Publier les commentaires (Atom)
0 commentaires:
Enregistrer un commentaire