* call by reference - 주소 전달(주소는 유일) - method의 매개변수가 참조형을 가진다면 주소(유일: 어떤 method 안에서 사용하더라도 해당 객체를 사용하게 된다.)가 그대로 전달된다. public class CallByReference{ int i; int j; public void swap(CallByReference cbr){ int temp = 0; temp = cbr.i; cbr.i = cbr.j; cbr.j = temp; System.out.println("swap 안 i: " + cbr.i + ", j: " + cbr.j);// 1, 2024 } public static void main(String[] args){ CallByReference cbr = new Ca..