vote up 4 vote down star

How many lines of code can we write in any java file ? Does it depend on JVM ?

flag

7 Answers

vote up 17 vote down

To extend upon Jonas's response, the Java Virtual Machine Specification, Section 4.8 Constraints on Java Virtual Machine Code says that:

The Java virtual machine code for a method, instance initialization method (§3.9), or class or interface initialization method (§3.9) is stored in the code array of the Code attribute of a method_info structure of a class file. This section describes the constraints associated with the contents of the Code_attribute structure.

Continuing to Section 4.8.1, Static Constraints

The static constraints on a class file are those defining the well-formedness of the file. With the exception of the static constraints on the Java virtual machine code of the class file, these constraints have been given in the previous section. The static constraints on the Java virtual machine code in a class file specify how Java virtual machine instructions must be laid out in the code array and what the operands of individual instructions must be.

The static constraints on the instructions in the code array are as follows:

...

  • The value of the code_length item must be less than 65536.

...

So a method does have a limit of 65535 bytes of bytecode per method. (see note below)

For more limitations to the JVM, see Section 4.10 Limitations of the Java Virtual Machine.

Note: Although there is apparently a problem with the design of the JVM, where if the instruction at byte 65535 is an instruction that is 1 byte long, it is not protected by exception handler - this is listed in footnote 4 of Section 4.10.

link|flag
vote up 4 vote down

I really hope for your sake that you never run into this limit, if there is one!

link|flag
vote up 2 vote down

I believe there is a 64kb limit on bytecode size per method.

link|flag
There is a bug/rfe logged with Sun for this at bugs.sun.com/bugdatabase/… – bmatthews68 Sep 20 '08 at 10:58
vote up 1 vote down

I remember actually running into this limit once in a complex JSP page in Tomcat 4 (way in the past when people were still using JSPs). The java file generated from the JSP had a method that was too big to compile, I think I had to split up the file or do some other stunt, which of course was a good idea in terms of readability anyway.

Sun's bug tracker tells me some people still have the same problem.

link|flag
been there. worked on a JSP that included a whole bunch of JSPs in a loop, or something along those lines. – Ken Liu Aug 28 at 4:50
vote up 1 vote down

There is no limit on "lines of code", but there is a limit on total size. Each method has a 64kb limit.

I've only ever run into this with code generation tools.

If you are coming close to the limit, be careful. A lot of profiling and monitoring tools use byte code insertion. They can push you over the top if you're too close. What's worse is that they often alter your class files after compilation. Everything compiles and runs in your development environment, but it crashes when you turn on your monitoring tools in Test or QA.

link|flag
vote up 0 vote down

Setting aside the fact that anything more than 1000 lines of code is almost certainly bad design, I'm pretty sure there's no such limit.

link|flag
yup, i know the code beyond some line is bad design. But given the legacy code and deadline on head we often write quick code in a same class. Also i have crated a child class to avoid a class to become a huge in size. I wanted to know limit if there is just to avoid error before it appear – kiritsinh parmar Sep 20 '08 at 10:57
What do you mean by lines of code? Just lines in the editor? Because a well-commented and documented class can easily exceed 1000 lines, even if the code only takes up about 500 actual lines of code. – MetroidFan2002 Sep 20 '08 at 15:21
Yup, i will consider comments also in line count. Also i believe comment should only to write why not what to intend. Code itself should specify the what as per 'Code As Comment' principal. – kiritsinh parmar Sep 21 '08 at 3:09
vote up -1 vote down

I'm thinking it's more based on the limits of your filesystem than any inherent limit in the compiler or JVM, and unless you're writing horrible, horrible code, you are highly unlikely to exceed any of them either way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.