Java/ J2EE, Oracle Adf Blog
Thursday, 12 February 2015
Final Methood
class
Bike{
final
void
run(){System.out.println(
"running"
);}
}
class
Honda
extends
Bike{
void
run(){System.out.println(
"running safely with 100kmph"
);}
public
static
void
main(String args[]){
Honda honda=
new
Honda();
honda.run();
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment