*複合多次呼叫的缺點:當該行發生exception時,不容易推測問題的原因。
ex: aLine.append(format(colMeasure[col].get(row).toString())); 發生null pointer exception
難以判斷是 colMeasure[col], get(row), toString() 那一個發生null pointer.
ex: aLine.append(format(colMeasure[col].get(row).toString())); 發生null pointer exception
難以判斷是 colMeasure[col], get(row), toString() 那一個發生null pointer.
留言