标签: java reference
int x=1; int y=x; System.out.println(y); x=20; System.out.println(y);
显然程序会打印1和1。 但是,我需要在x和y之间创建一个引用,所以每当我改变x时,y也会被改变。