How to initialise elements in an arrayList in a for loop? For example, I have an arrayList called checkingAccount. I want to make the checkingAccount elements to be set from 100 to 109 and make them assigned to a different class. I made it working on the array, but when I converted it to arrayList, it does not work anymore! :(
ArrayList<String> checkingAccount = new ArrayList<String>();
for (int i = 0; i <= 110; i++) {
checkingAccount.add("");
}
for (int i = 110; i <= 110; i++) {
checkingAccount.add("check");
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF