콩's EDUCATION/콩's JAVA_RUN
CallByValue
콩쓰s
2014. 5. 13. 11:00
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);
}
}