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

前端 未结 7 1732

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/<init>()V, but you shouldn't need to add super(); in the source, the compiler should handle that

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