Tuesday 5 May 2015

Check befire Down casting in Java

Before downcasting, check for the dynamic type of the object and then downcast.
StringBuffer str = new StringBuffer("Hello");
Object obj = str;
if(obj instanceof String)
{
String strBuf = (String) obj;
}

No comments:

Post a Comment