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");
}
}