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实现的过程
添加回答
举报
0/150
提交
取消