0%

Java(25)DeBug调试

DeBug调试

  • Debug调试程序:

  • 可以让代码逐行执行,查看代码执行的过程,调试程序中出现的bug

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.tipdm.Demo02;

/**
* Debug调试程序:
* 可以让代码逐行执行,查看代码执行的过程,调试程序中出现的bug
* 使用方式:
* 在行号的右边,鼠标左键单击,添加断点(每个方法的第一行,哪里有bug添加到哪里)
* 右键,选择Debug执行程序
* 程序就会停留在添加的第一个断点处
* 执行程序:
* F8:逐行执行程序
* F7:进入到方法中
* shift + F8:跳出方法
* F9:跳到下一个断点,如果没有下一个断点,那么就结束程序
* ctrl+F2:退出debug模式,停止程序
* Console:切换到控制台
*/
public class demo1 {
public static void main(String[] args) {
// int a = 10;
// int b = 20;
// int sum = a + b;
// System.out.println(sum);

// for (int i = 0; i < 3; i++) {
// System.out.println(i);
// }
print();
}

private static void print() {
System.out.println("hello world");
System.out.println("hello world");
System.out.println("hello world");
System.out.println("hello world");
System.out.println("hello world");
System.out.println("hello world");
}
}

-------------本文结束感谢您的阅读-------------