CCCCCC"> main[1] next main[1] Breakpoint hit: hehe.main (hehe:20) main[1] list 16 { 17 int a = 2; 18 int b = 3; 19 int c= a+b; 20 => System.out.println(c); 21 test kk=new test(1,2); 22 System.out.println(kk.add()); 23 24 } main[1] |
接下来的问题自然是如何查看对象。当程序运行到 new 命令处时,键入locals,可以看到
main[1] step main[1] Breakpoint hit: test. (test:5) main[1] list 1 class test 2 { 3 int a; 4 int b; 5 => test(int aa,int bb) 6 { 7 a = aa; 8 b = bb; 9 } main[1] locals Method arguments: Local variables: this = test@64fd6722 aa = 1 bb = 2 main[1] |
可以看到此时显示的变量值是类 test 中构造函数中的变量值。 this 对象即为当前构造的对象。可以用 dump 命令进行查看。
main[1] dump this this = (test)0x11a { int b = 0 int a = 0 } |
也可以在 main 函数中用 dump kk 和 print 命令进行对象查看
main[1] dump kk kk = (test)0x11a { int b = 2 int a = 1 } main[1] print kk kk = test@64fd6722 main[1] print kk.a kk.a = 1 main[1] print kk.b kk.b = 2 |
最后键入 cont 命令,如果没有其他断点,程序就直接运行完毕退出。调试结束。
main[1] cont 3 > Current thread "main" died. Execution continuing... > hehe exited |
上述操作中的断点都是设置在 main 函数中的,如果要设置在调用的类方法中,则要用 stop in yourclassname.functionname 命令来进行设置,比如说:
> stop in test.add Breakpoint set in test.add > run run hehe running ... main[1] 5 Breakpoint hit: test.add (test:11) main[1] list 7 a = aa; 8 b = bb; 9 } 10 int add() 11 => {return a+b;} 12 } 13 public class hehe 14 { 15 public static void main(String args[]) main[1] |
这样的话,我们已经可以在程序中的几乎所有需要地方的地方进行断点设置并进行跟踪,查看变量。
JDB还有很多的调试手段,除了上面那些最常用的,其他很重要的还有clear清除断点,use设置源程序路径,memory显示当前内存使用状况,gc强制进行内存回收,!!重复上面的命令,thread设置当前线程,quit和exit退出jdb等,还有远程调试等内容,都很有用。这里就不一一介绍了。
· 关于作者
余绍峰 ,大四学生,有近一年的 VC 编程经验。出于兴趣,于 2001 年开始学习 Java 欢迎各位高手新手多多提批评意见,共同学习,共同进步。
(全文完)
文章来源于领测软件测试网 https://www.ltesting.net/