java.awt.Point, Point클래스이 멤버변수, Point클래스의 주요 메소드
CODEDRAGON ㆍDevelopment/Java
반응형
java.awt.Point
· Point 클래스는 좌표 상의 어떤 위치를 나타내는데 사용합니다.
· 각종 프레임이나 다른 컴퓨넌트의 위치를 설정할 때 사용합니다.
· x와 y좌표값을 저장하기 위한 멤버변수를 가지고 있습니다.
Point클래스이 멤버변수
Field Summary
Modifier and Type | Field and Description | 설명 |
int | x The X coordinate of this Point. |
x좌표 |
int | y The Y coordinate of this Point. |
y좌표 |
Point클래스의 주요 메소드
메소드 | 설명 |
void setLocation(int x, int y) | x, y좌표의 위치값을 설정합니다. |
Point getLocation() | 현재 위치의 x, y좌표값을 반환합니다. |
https://docs.oracle.com/javase/8/docs/api/java/awt/Point.html