给出下列【代码】注释标注的代码的输出结果。 class Point{ int x,y; Point(int x,int y){ this.x=x; this.y=y; } void print(){ System.out.println("("+x+","+y+")"); } } public class Test{ public static void main(String args[]){ Point p=new Point(1,2); p.print(); //【代码1】 move(p); p.print(); //【代码2】 } static void move(Point p){ p.x=p.x+5; p.y=p.y+8; p.print(); //【代码3】 } }