This is regarding java. This is question asked in a interview.
|
closed as not a real question by Michael Petrotta, Brian Roach, Justin Satyr, Chris, duffymo Oct 16 '11 at 20:29
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
This http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#40222 that contains the specifications of the The JavaTM Virtual Machine Specification, doesn't seem to give limits. It probably was a trick question. I would say that there are limits. Probably you can't have a If we consider this 4gb file limit an hard limit, and we say that we want all the inner classes to be 6 character (AZaz09) long,
It's 14 characters. And it is correct to write:
Now, 4gb / 14 characters = 300 million inner classes. So I'm quite sure the maximum number is < 300 million inner classes. Now, if you are REALLY interested on hard numbers, tomorrow I'll make a program able to create some hundred million inner classes and I'll try to see on my computer with Windows Java 1.7 64 bits how much big a source file can be. I'll add that the right response would be something similar "is it really important if it's 100 or 1000 or one million? How many inner classes would you put in a class? In years of programming I haven't ever put more than 3 or 4 in a class. But perhaps your programmers love to write single class files long more than 10000 lines of code." And taking from the hourse mouth (the Sun Java site): |
||||
|
|
|
http://en.wikipedia.org/wiki/Inner_class . Google it! |
|||
|
|