I have a list of objects called employee() and I used emp as my object. I want to increment over employees and print the name of all the objects. I really lost on how to do this. Thanks.
for( emp ;  ;employees())
        {
        System.out.println(emp.name);
        }
 
    