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
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");
}
}
Newer Post
Older Post
Home