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
- 클래스
- 배열
- 메소드
- c#
- 객체
- 파이썬
- Python
- SpringBoot
- array
- 자바
- GIT
- JS
- SSL
- AssertJ
- JavaScript
- 프로그래머스스쿨
- Java
- Docker Desktop
- Dict
- 저장소
- class
- Swing
- event
- synchronized
- thread
- docker
- 자바스크립트
- join()
- StringBuilder
- 스프링부트
Archives
- Today
- Total
목록ImageIcon (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