I am thinking to build a VERY large Java class, is there any limit on the number of methods the Java class can have? Can it go into the millions of methods?
update: The purpose is, yes, to make a "God" class.
|
|
According to the Java class file specification the limit is 65535:
|
|||||
|
|
No. Some relevant pieces from the class file format spec: The following limitations of the Java virtual machine are implicit in the class file format:
I think this means that you can have 65535 methods, but only if you have no other objects that take up slots in the constant pool (field names for example). In addition to that, there is also a maximum size for each method:
|
|||
|
|