Oct 01 2011 06:57 PM 4380 2 instanceOf operator Govind Gupta what is difference between instanceOf operator and getclass() suraj20p Profile Answers by suraj20p Questions by suraj20p Oct 28th, 2011 instanceOf() is an operator used to find out whether an object is of instance of certain class or not eg: String str=new String(); //here str is an object of String class Sop(str.instanceOf(String));... Answer Question Select Best Answer
Oct 01 2011 06:57 PM 4380 2 instanceOf operator Govind Gupta what is difference between instanceOf operator and getclass() suraj20p Profile Answers by suraj20p Questions by suraj20p Oct 28th, 2011 instanceOf() is an operator used to find out whether an object is of instance of certain class or not eg: String str=new String(); //here str is an object of String class Sop(str.instanceOf(String));... Answer Question Select Best Answer
suraj20p Profile Answers by suraj20p Questions by suraj20p Oct 28th, 2011 instanceOf() is an operator used to find out whether an object is of instance of certain class or not eg: String str=new String(); //here str is an object of String class Sop(str.instanceOf(String));...