메뉴가 존재하는 컨테이너를 생성하기 위한 클래스
new 연산자로 Frame 클래스의 기본 생성자를 호출하여 객체 생성
Frame 클래스로 객체를 생성하면 프레임이 보여지지 않은 상태로 생성
Frame frame = new Frame()
new 연산자로 Frame 클래스의 매개변수가 작성된 생성자를 호출하여 객체 생성
매개변수로 전달받은 문자열을 프레임의 제목으로 설정
Frame frame = new Frame("프레임");
Component.setSize(int width, int height)
Component.setLocation(int x, int y)
Component.setVisible(boolean b)
import java.awt.*;
public class FrameOneApp {
public static void main(String[] args) {
Frame frame = new Frame("프레임");
frame.setSize(500, 400);
frame.setLocation(700, 300);
frame.setVisible(true);
}
}