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"); }
Comments
Leave a comment