Line breakpoint问题,第一次遇到
public void testForeach(){
System.out.println("有如下课程可选:(通过for each方法)");
for(Object obj:coursesToSelect){ //这行提示Line breakpoint:ListTest [line: 82] - testForeach()
Course cr = (Course)obj;
System.out.println("课程:"+cr.getId()+":"+cr.getName());
Line breakpoint:ListTest [line: 82] - testForeach()这个是什么意思?求详细解答最好带上例子。