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
CaseSencitive
/*
RULE: identofiers are case sensitive ( balance and Balance are two different)
*/
class CaseSencitive
{
public static void main(String[] args)
{
int bal;
int Bal;
System.out.println("legal identifiers");
}
}
Newer Post
Older Post
Home