| Author |
java class file size
|
Pradeep bhatt
Ranch Hand
Joined: Feb 27, 2002
Posts: 8876
|
|
Hi all, I have read some where that the max size of a compiled java class file is 64KB. Is it true? If true, why is there a file size limitation. Thanks in advance. --------
|
Groovy
|
 |
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
|
|
Pradeep As far as I know there is no u[ward limit on the total size of the compiled class file. There are however severalo other things that make up the byte code that are limited to 64k. The value of the code_length (the number of bytes in a method), might be what you heard of that is confusing you. For all of the details check out the virtual machine specification.
|
Dave
|
 |
 |
|
|
subject: java class file size
|
|
|