개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
메개변수 예제(2)
import java.awt.Point;
class PassByValue
{
public static void modifyPoint(Point pt, int
j) {
pt.setLocation(5,5);
j=15;
System.out.println("During
modifyPoint " + "pt = " +
pt + "and j = " + j);
}
public
static void main(String[] args) {
Point p = new Point(0,0);
int i =
10;
System.out.println("Before modifyPoint " + "p = " +
p + "and
i = " + i);
modifyPoint(p,i);
System.out.println("After modifyPoint "
+ "p = " +
p + "and i = " + i);
}
}
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co
'오라클 > Oracle,SQL' 카테고리의 다른 글
구로 오라클실무학원] overloading(2) (0) | 2016.03.28 |
---|---|
구로 오라클실무학원] overloading(1) (0) | 2016.03.28 |
구로 오라클실무학원] 메개변수 예제(1) (0) | 2016.03.28 |
구로 오라클실무학원] 메개변수 (0) | 2016.03.28 |
구로 오라클실무학원] 메서드 – 자판기(2) (0) | 2016.03.28 |