Friday, February 25, 2011

Final_Interface

//RULE:we can not use the final keyword to the interface

final interface Final_Interface
{
public static void main(String ar[])
{
System.out.println("illegal combination of final and interface");
}
}