Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ループを実行できることはわかっていますが、同時に2つをトラバースするにはどうすればよいですか??? また、リストのサイズがわからないため、for ループを使用できません。むしろ、while ループを使用する必要がある可能性があります。大きなブール式になるのでしょうか。
私はできることを試してみます、いくつかのアイデアに感謝します。
これは、2 つの反復子を使用して行う方法です。
for (Iterator<String> it1 = list1.iterator(), it2 = list2.iterator(); it1.hasNext() && it2.hasNext();) { final String s1 = it1.next(), s2 = it2.next(); // stuff to do }