Sat Dec 27, 2008 12:05 pm
class Blue {
void method1() {
System.out.println("blue 1");
method3();
}
void method3() {
System.out.println("blue 3");
}
}
class Moo extends Blue {
void method2() {
super.method3();
System.out.println("moo 2");
this.method3();
}
void method3() {
System.out.println("moo 3");
}
}
class Crew extends Moo {
void method1() {
System.out.println("crew 1");
}
void method3() {
System.out.println("crew 3");
}
}
Sun Dec 28, 2008 10:46 am
|
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.