eclipse在调试java程序时step into不能进入方法中。
1. public static void main(String[] args) {2. String str = "hello world";
3. for(int i=0;i<str.length();i++) {
4. System.out.println(str.charAt(i));
5. }
6. System.out.println(str.charAt(10));
7. }
在第4行断点,点击step into,仅仅单步执行,并不能进入方法中。
求解答。