| Author |
Class casting a null pointer
|
Justin Chu
Ranch Hand
Joined: Apr 19, 2002
Posts: 209
|
|
Is it always safe to cast a null pointer to a certain Class? I have the habit of doing this Object o = vector.get(1); String str = o == null ? null : (String)o; I wonder if I can leave out the checking altogether to save processing time. Chu [ May 08, 2002: Message edited by: Chu Tan ]
|
 |
David Weitzman
Ranch Hand
Joined: Jul 27, 2001
Posts: 1365
|
|
|
Yes it's safe.
|
 |
 |
|
|
subject: Class casting a null pointer
|
|
|