This question came up in Spring class, which has some rather long class names. Is there a limit in the language for class name lengths?
|
|
|
|
|
|
|
The Java Language Specification states that identifiers are unlimited in length. In practice though, the filesystem will limit the length of the resulting file name. |
||||
|
|
|
65535 characters I believe. From the Java language specification:
here: http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html |
||||||||||||
|
|
|
No. Java doesn't impose any limit on the class name. But if you interfacing with other systems (e.g. JNI) its better to be on the safe side. |
||
|
|
|
|
With JDK 1.5, the practical limit for class names on Windows XP with 255 -- longer names gave errors in the file system. This was the full name (directory+package+class). I have not tried JDK 1.6 on Vista or windows 7, hopefully Sun fixed it to be the NTFS limit of 8000 or so. |
||
|
|
