zoukankan      html  css  js  c++  java
  • Javassist编译报错:Type long_2nd (current frame, stack[2]) is not assignable to 'java/lang/Long'

    Caused by: compile error: invalid types for >
        at javassist.compiler.CodeGen.badTypes(CodeGen.java:1365)
        at javassist.compiler.CodeGen.convertOprandTypes(CodeGen.java:1426)
        at javassist.compiler.CodeGen.compareExpr(CodeGen.java:1316)
        at javassist.compiler.CodeGen.booleanExpr(CodeGen.java:1209)
        at javassist.compiler.CodeGen.compileBooleanExpr(CodeGen.java:261)
        at javassist.compiler.CodeGen.atIfStmnt(CodeGen.java:414)
        at javassist.compiler.CodeGen.atStmnt(CodeGen.java:385)
        at javassist.compiler.ast.Stmnt.accept(Stmnt.java:53)
        at javassist.compiler.CodeGen.atStmnt(CodeGen.java:381)
        at javassist.compiler.ast.Stmnt.accept(Stmnt.java:53)
        at javassist.compiler.CodeGen.atWhileStmnt(CodeGen.java:467)
        at javassist.compiler.CodeGen.atStmnt(CodeGen.java:387)
        at javassist.compiler.ast.Stmnt.accept(Stmnt.java:53)
        at javassist.compiler.CodeGen.atStmnt(CodeGen.java:381)
        at javassist.compiler.ast.Stmnt.accept(Stmnt.java:53)
        at javassist.compiler.CodeGen.atMethodBody(CodeGen.java:321)
        at javassist.compiler.CodeGen.atMethodDecl(CodeGen.java:303)
        at javassist.compiler.ast.MethodDecl.accept(MethodDecl.java:47)
        at javassist.compiler.Javac.compileMethod(Javac.java:175)
        at javassist.compiler.Javac.compile(Javac.java:102)
        at javassist.CtNewMethod.make(CtNewMethod.java:79)
        ... 4 more
    Exception in thread "main" java.lang.VerifyError: Bad type on operand stack
    Exception Details:
      Location:
        demo/service/DemoService$Proxy.<init>()V @8: putfield
      Reason:
        Type long_2nd (current frame, stack[2]) is not assignable to 'java/lang/Long'
      Current Frame:
        bci: @8
        flags: { }
        locals: { 'demo/service/DemoService$Proxy' }
        stack: { 'demo/service/DemoService$Proxy', long, long_2nd }
      Bytecode:
        0x0000000: 2ab7 00a4 2a14 00a5 b500 47b1   

    原因,我一段代码如下:

    long start = System.currentTimeMillis();
    Long timeout = 3000L;
    if (System.currentTimeMillis() - start > timeout){
        // TODO
    }

    long是基本类型,Long是long的包装类型,是个对象。基本类型和对象是不能直接比较的,问题就出在这里。

    小LUA 面对敌人的严刑逼供,我一个字也没说,而是一五一十写了下来。
  • 相关阅读:
    【设计模式】- 责任链篇
    【工具】
    【日常摘要】- 生成随机的姓名或手机号篇
    排序算法的时空复杂度、稳定性分析
    链表插入排序、链表归并排序
    图的存储结构
    二叉平衡树的插入和删除操作
    二叉排序树的查找、插入和删除
    哈希表
    堆的插入、删除和建立操作,堆排序
  • 原文地址:https://www.cnblogs.com/LUA123/p/15405790.html
Copyright © 2011-2022 走看看