简体   繁体   中英

Meaning of +number in Java exception log

In these exception log lines:

Exception: java/lang/NullPointerException
at as.<init>(+95)
at fw.c(+8)
at bl.a(+27)
at bl.a(+116)
at gk.a(+110)
at bz.n(+28)
at bz.commandAction(+755)
at javax.microedition.lcdui.Displayable.callKeyPressed(Displayable.java:1161)
at javax.microedition.lcdui.Canvas.callKeyPressed(Canvas.java:1070)

what is the meaning of (+95) , (+8) , (+755) ...etc ?

These are offsets of the instruction from where the exception propagated (thrown within each class). The code looks obfuscated BTW.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM