用OO思想最佳化程式碼

xjde1314發表於2006-05-27
public Object createCopy(Object source) {

if (source instanceof Integer) {
return new Integer(((Integer)source).intValue());
}
if (source instanceof Long) {
return new Long(((Long)source).longValue());
}
if (source instanceof Float) {
return new Float(((Float)source).floatValue());
}
return null;
}

相關文章