Hi, I had a small question to ask. I had to find out what is the maximum length of a variable we declare in java. Like:
int some_name = 3126;
Here the length of the above "variable name"
some_name is 9 characters. If I were to write a very long name instead like
int some_name_some_name_some_name_some_name_some_name_some_name_some_name_some_name_some_name_some_name_some_name = 3126;
java still doesn't give a compile error. So I wanted to confirm whether java allows unlimited length for a "variable name".