java.lang.VerifyError on method that worked a minute ago

前端 未结 7 1733

Apologies in advance but I have never seen this error before and don\'t know what to include. I am using NetBeans and suddenly began getting this error:

Exc         


        
7条回答
  •  粉色の甜心
    2021-01-18 05:06

    A VerifyError means the bytecode is invalid, which points to a compiler problem. I would try rebuilding everything in the hopes that it goes away, but otherwise you should file a bug. The bytecode is required to call the superclass constructor manually via invokenonvirtual superclass/()V, but you shouldn't need to add super(); in the source, the compiler should handle that

提交回复
热议问题