개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
메개변수 예제(1)
class Swap
{
static void swap(int x, int y)
{
int temp;
temp = x;
x = y;
y = temp;
}
{
static void swap(int x, int y)
{
int temp;
temp = x;
x = y;
y = temp;
}
public static void main(String[] args)
{
int x = 10;
int y = 20;
Swap.swap(x, y);
{
int x = 10;
int y = 20;
Swap.swap(x, y);
System.out.println("x.. " + x);
System.out.println("y.. " + y);
}
}
System.out.println("y.. " + y);
}
}
'오라클 > Oracle,SQL' 카테고리의 다른 글
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.06.05 |
---|---|
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.06.05 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.06.05 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.06.05 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.06.05 |