Friday, February 25, 2011

Final_Methods

//RULE:we can use the final keyword with methods but methods are not overrides

public class Final_Methods
{
public final void testMethod()
{
final int x=10;
System.out.println("ok");
}
}