JAVA调试,调用了方法,怎么看见程序在方法里实现过程?
public class move {
public static int i;
public static int j;
public void Move(int x,int y) {//定义移动操作
i=x=y;
j=y=0;
}
public static void main(String[] args) {
i=2;j=3;
move m = new move();
System.out.println(i+" "+j);
m.Add(i, j);
System.out.println(i+" "+j);
}
}
//就比如说这一段代码,我怎么查看move实现的过程 |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
在main方法下的第一行打断点,用debug查看。 |
|
|
|
|