| Author |
why variable names can't start with numericals
|
nitin kanwar
Greenhorn
Joined: Aug 20, 2011
Posts: 1
|
|
I was asked in an interview as to why the variable names can't start with a numerical value ? To be more precise the interviewer wanted to know the lexical / compilation problems associated with declaring a variable name that starts with a numerical ?
Answers will be appreciated.
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
Welcome to JavaRanch
think about this:
int 2L = 100;
long value = 2L;//what is the value of value variable?
and
int 4L = 200;
System.out.println(4L);//???
|
 |
 |
|
|
subject: why variable names can't start with numericals
|
|
|