关于break MISSING_BLOCK_LABEL成对出现

来源:互联网 发布:javascript的date对象 编辑:程序博客网 时间:2024/05/01 05:35

源码:

ThreadGate gate;gate = getThreadGate();if (!gate.isActiveThread()) {gate.enter(-1L);evict(((Map) (getFrontMap())));evict(getBackMap());processDeferredEvents(true);gate.exit();}

反编译后:

ThreadGate gate;        gate = getThreadGate();        if(gate.isActiveThread())            break MISSING_BLOCK_LABEL_53;        gate.enter(-1L);        evict(((Map) (getFrontMap())));        evict(getBackMap());        processDeferredEvents(true);        gate.exit();        break MISSING_BLOCK_LABEL_53;        Exception exception;        exception;        gate.exit();        throw exception;


原创粉丝点击