Java初心者です。3 つの ArrayLists があり、すべての ArrayLists には特定のサブジェクトに関連するデータが含まれているため、同じ長さです。以下に示すように、配列を反復処理していくつかの操作を実行したいと考えています。
public void example(){
ArrayList<Long> ID = new ArrayList<Long>;
ArrayList<Integer> AcNo = new ArrayList<Integer>;
ArrayList<Integer> Vnum = new ArrayList<Integer>;
//get ID and AcNo from user, compare it in the ArrayList, get the corresponding Vnum
// for the Vnum from previous step, compare it with the next Vnum and get corresponding ID and AcNo until some *condition* is satisfied.
}
Javaでこれを行うにはどうすればよいですか? Iterator の例を見ましたが、これを行う正しい方法がわかりません! 助けてください。