CallByValueTest 썸네일형 리스트형 CallByValue CallByValue 예제 class Test{ void addInt(int i){ System.out.println(i++); } } public class CallByValueTest { public static void main(String[] args) { Test t = new Test(); int j = 10; t.addInt(j); System.out.println("t.addInt(j) 호출 : "+j); } } 10 t.addInt(j) 호출 : 10 더보기 이전 1 다음