Skip to content

Instantly share code, notes, and snippets.

@BalicantaYao
Created August 25, 2014 14:20
Show Gist options
  • Save BalicantaYao/38cb7739369922ee9b24 to your computer and use it in GitHub Desktop.
Save BalicantaYao/38cb7739369922ee9b24 to your computer and use it in GitHub Desktop.
PassByValue.java
private static void runCase1() {
int j = 10;
Point point = new Point(4, 4);
logger.info("Before Modify Point {}, j ={}", point, j);
setPointLocation(point, j);
logger.info("After Modify Point {}, j ={}", point, j);
// Result
// Before Modify Point Point{y=4, x=4}, j =10
// During Modify Point Point{y=5, x=5}, j =20
// After Modify Point Point{y=5, x=5}, j =10
}
private static void setPointLocation(Point pointInst, int j) {
pointInst.setLocation(5, 5);
j = 20;
logger.info("During Modify Point {}, j ={}", pointInst, j);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment