What does the jsr keyword mean?

前端 未结 6 1278
栀梦
栀梦 2021-01-18 20:21

I\'m looking at some Java code, and I\'ve noticed the following:

if (!foo(bar, baz, qux)) {
    i = 0; jsr 433;
}

javac chokes on it, sayin

6条回答
  •  孤街浪徒
    2021-01-18 21:25

    I'm close to sure that this code is coming from a Java decompiler.

    The JSR 432 smells like a decompiler note, where the decompiler found a "jump" code but doesn't have a clue on how to express it in java language.

提交回复
热议问题