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.
employee() というオブジェクトのリストがあり、オブジェクトとして emp を使用しました。従業員をインクリメントして、すべてのオブジェクトの名前を出力したいと考えています。私は本当にこれを行う方法を失いました。ありがとう。
for( emp ; ;employees()) { System.out.println(emp.name); }
使ってみてforeach()
foreach()
for(Employee employee : employees()) { System.out.println(employee.name); }