Notice
Recent Posts
Recent Comments
관리 메뉴

Developer Gonie

[5주차] 93. AWT, FlowLayout 배치 예시 코드 본문

K-DigitalTraining 강의/1. Java

[5주차] 93. AWT, FlowLayout 배치 예시 코드

이대곤 2022. 6. 8. 17:38

import java.awt.*;

class Sub1 extends Frame{

	Sub1(String title){
		super(title); // 부모의 생성자에 넘겨주면 제목을 보여지게 할 수 있음
		super.setSize(400,300); //setSize(400,300); 
		
		Button bt1 = new Button("bt1");
		Button bt2 = new Button("bt2");
		Button bt3 = new Button("bt3");
		Button bt4 = new Button("bt4");
		Button bt5 = new Button("bt5");
		
		setLayout(new FlowLayout());
		
		add(bt1);
		add(bt2);
		add(bt3);
		add(bt4);
		add(bt5);
	}
}

public class Ex12_02_Button {
	public static void main(String[] args) {
		Sub1 f = new Sub1("버튼만들기"); // 다형성에 의해 Frame f = new Sub1("버튼만들기"); 이것도 가능
		f.setVisible(true);
	}
}
Comments