Answer to Question #48836 in Java | JSP | JSF for Ibrahim

Question #48836
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! :(
1
Expert's answer
2014-11-13T02:59:21-0500
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS