What does the jsr keyword mean?

前端 未结 6 1286
栀梦
栀梦 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:19

    It is not in the list of Java keywords. So I don't believe it has any meaning. And I doubt it's possible to compile it.

提交回复
热议问题