본문 바로가기

JAVA 프로그래밍

맴버 변수와 메소드


public class UnitedData {
 public int x; //멤버 변수의 선언
 public int y; //멤버 변수의 선언
 public int plus() {//멤버 메서드의 선언
  return x + y;
 }
 public int minus(){//멤버 메서드의 선언
  return x - y;
 }
 public float divide(){//멤버 메서드의 선언
  return (float) x / (float)y;
 }
 public int mul(){//멤버 메서드의 선언
  return x * y;
 }
 public static void main(String[] args) {
  UnitedData d = new UnitedData();
  d.x = Integer.parseInt(args[0]);
  d.y = Integer.parseInt(args[1]); //멤버 변수에 값할당
  System.out.println(d.minus());
  System.out.println(d.plus());
  System.out.println(d.divide());
  System.out.println(d.mul());

 }

}


'JAVA 프로그래밍' 카테고리의 다른 글

상속  (0) 2009.10.07
오버로딩,오버라이딩  (0) 2009.10.07
오버라이딩과 오버로딩  (0) 2009.10.07
생성자  (0) 2009.10.07
심심해서 만든 마름모  (0) 2009.10.07