我有一個方法返回類型爲ArrayList<String>
,它也讀取相同類型的參數。現在我該如何type cast
或修改我的BigDecimal來讀取該值?BigDecimal的類型轉換
public static ArrayList<String> currencyUtilArray(ArrayList<String> amountStr) {
BigDecimal amount = new BigDecimal(ArrayList<String> amountStr);
//How do I define that the amountStr is ArrayList<String> and need to place in BigDecimal amount one after another till the end of the List
return amountStr;
}
或者我需要做的
你是不是想一個ArrayList的''轉換爲一個ArrayList的''? –
Gabe
2012-01-03 07:26:55
@Gabe一個方法會調用併發送值列表,現在說''1234.5678'和'4567.1234'這兩個值到'currUtil'這個方法現在我需要定義我的方法'currUtil',這樣它就讀取值並將其放置在BigDecimal中一個接一個地處理它。如何定義我的方法? – 2012-01-03 07:35:44