자바로 button을 생성해보자. 자바 awt 패키지 안에 들어 있는 Button 클래스를 사용하면 간단하게 구현 할 수 있다. html/css에서 사용하던 input type button과 동일한 기능이다.

 

 버튼을 삽입할 프레임을 먼저 생성하고 버튼을 add로 추가했다. ‘버튼 1’버튼 2’ 두 개의 클래스를 생성한 예제이다.

 

import java.awt.*;

 

class BorderLayoutEx1 extends Frame {

public static void main(String[] args) {

 Frame frame = new Frame();

 

 frame.setSize(500,500);

 frame.setVisible(true);

 

 frame.add(new Button("버튼 1")); // button 클래스 생성

 frame.add(new Button("버튼 2")); // button 클래스 생성

 }

}

 

 출력 화면 상에 버튼 2만 보이는 게 정상이다. 버튼의 위치나 크기를 지정하지 않으면 화면의 중앙으로 기본 세팅이 된다. 먼저 생성된 버튼 1 위에 버튼 2가 덮여 있다고 보면 된다.

 


+ Recent posts