How to circumvent the “Method too large” error in Java Compilation?

前端 未结 4 1081
说谎
说谎 2021-01-18 20:56

I have a parser written in bigloo scheme functional language which I need to compile into a java class. The whole of the parser is written as a single function. Unfortunatel

相关标签:
4条回答
  • 2021-01-18 21:32

    Well, the case is a bit different here, the method only consists of a single function call. Now this function has a huge parameter list(the whole of the parser actually!!). So I have no clues how to split this!!

    The way to split up such a beast could be:

    • define data holder objects for your parameters (put sets of parameters in objects according to the ontology of your data model),
    • build those data holder objects in their own context
    • pass the parameter objects to the function
    0 讨论(0)
  • 2021-01-18 21:33

    Split the method in related operations or splitting utilities separately.

    0 讨论(0)
  • 2021-01-18 21:34

    Is there any possible way where I can circumvent this error?

    Well, the root cause of this compiler error is that there are hard limits in the format of bytecode files. In this case, the problem is that a single method can consist of at most 65536 bytes of bytecodes. (See the JVM spec).

    The only workaround is to split the method.

    0 讨论(0)
  • 2021-01-18 21:39

    Quick and Dirty: Assign all your parameters to class variables of the same name (you must rename your parameters) at the beginning of your function and start chopping up your function in pieces and put those pieces in functions. This should guarantee that your function will basically operate with the same semantics.

    But, this will not lead to pretty code!

    0 讨论(0)
提交回复
热议问题