개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 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

+ Recent posts