Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- thread
- Java
- AssertJ
- 자바스크립트
- Dict
- join()
- 클래스
- c#
- Python
- 메소드
- 스프링부트
- 배열
- synchronized
- docker
- Docker Desktop
- 자바
- class
- event
- 프로그래머스스쿨
- 저장소
- array
- JS
- 파이썬
- GIT
- SSL
- SpringBoot
- 객체
- StringBuilder
- Swing
- JavaScript
Archives
- Today
- Total
목록iCon (1)
정리노트

package q3; import java.awt.*; import javax.swing.*; public class Q3 extends JFrame { class MyThread extends Thread { private JLabel label; int x, y; MyThread(String file, int x, int y) { this.x = x; this.y = y; label = new JLabel(); label.setIcon(new ImageIcon(file)); label.setBounds(x, y, 100, 100); add(label); } public void run() { while (x
프로그래밍/Java
2023. 2. 4. 18:11