变量传递
? String count = "ss";??String tmp = count;??count=null;??System.out.println(tmp);??System.out.println(count);