I come to know that the maximum size of a method in java is 64k. And if it exceeds, we\'ll get a compiler warning like \"Code too large to compile\". So can we call this a
64k is quite a lot, if you exceed it you may think about reorganizing you code.
In my project I met this constraint once in generated sources. Solved by just splitting one method to several.