When I’m trying the following statement,
a.do(b.do());
suppose I got a NullPointerException from that line.
then, is there any way to find whether a is null of b is null?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, the only solution is to extract the inner expression:
Which is a good idea anyway.