|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
Message:
Stringing things along
Posted by Matt Gerrans on November 03, 2001 at 12:53 PM
> But if > someArbitaryObject.getArbitaryValue(); > returns null, then > someArbitaryObject.getArbitaryValue().toString(); > will result in a NullPointerException.
So, what is your point? If someArbitaryObject is null, then someArbitaryObject.method() will cause an exception. - mfg
Replies:
|