Java-Rules
Learn Java By Rules And From The Errors
Spring
Home
Java-8
Spring
Hibernate
keywords
servlet
jdbc
Web Services
Ajax
concepts
Friday, February 25, 2011
Abstract_Final
/*
RULE:
we can not use the final keyword to a abstrct class
*/
final abstract class Abstract_Final
{
public static void main(String ar[])
{
System.out.println("illegal combination of final and interface");
}
}
Newer Post
Older Post
Home