세터

X좌표와 Y좌표로 이루어진 2차원 좌표 Coordinate 클래스를 작성하자. class Coordinate{ private double x; private double y; // -- 생성자 -- // Coordinate (double x, double y){this.x = x; this.y = y;} // - 메서드 -- // double getX() {return this.x;} double getY() {return this.y;} void setX(double x) { this.x = x;} void setY(double y) { this.y = y;} void setXY(double x, double y) { this.x = x; this.y = y;} } //Coordinate 접근자(acc..
Codezoy
'세터' 태그의 글 목록