The NullPointerException in Java seems to only report that it occurred on a particular line of code. Is it possible to alter that exception to state which variable was null if there is more than one variable used in a line of code?
|
|
|||
| show 2 more comments |
|
No, the debug information in the class file does not contain enough information to allow this. You can, however, improve on the situation. There are two things that can cause a NPE to be thrown:
If you write your code so there is only one of these on a given code line, there is simply no doubt about which one caused the NPE. It will introduce a lot of temporary variables but then you have more information readily available when debugging. |
|||||||
|
|
No. NullPointerException does not always have to be caused by a variable/identifier being In most cases, it is fairly obvious what has caused the NPE. If not, then you may have too much going on in one line of code. Consider this use case:
Here it is obvious that Another case:
Here it could be The point is, that armed with this information and a breakpoint, it should be obvious what was |
|||||||||||||||
|
|
one should keep his lines short :) and a mark of professional coding is to check for null before using a variable |
|||||||||
|
something.getThis().getThat().getAnotherThing().whyAmIStillChaining().seriouslyWtf()all on one line and get an NPE, the only easy way to figure it out is to pull it all apart and recompile/rerun. It's why I wish they had put the Elvis operator in Java 7. Oh well. I had this problem recently too -.- – Brian Sep 25 '12 at 22:31