Java-Rules
Learn Java By Rules And From The Errors
Spring
Home
Java-8
Spring
Hibernate
keywords
servlet
jdbc
Web Services
Ajax
concepts
Friday, April 1, 2011
DontUse
/*
RULE: dont use keywords as identifiers
*/
class DontUse
{
public static void main(String[] args)
{
int if;
int for;
System.out.println(" illegal start of expressition");
}
}
Newer Post
Older Post
Home