package GUITEST; import java.awt.*; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.JFrame; public class MouseSample extends Frame { int i =0; Button button; Label label; public MouseSample() { //컴포넌트 생성 button = new Button("클릭"); label = new Label("0"); //컴포넌트를 프레임에 배치 this.setLayout(new FlowLayout()); //layout 클래스에 set 하는것 == setter this.add(button); //..
package prj190711; interface Fightable extends Moveable, Attackable{} interface Moveable { void move(int x, int y);} interface Attackable { void attack(UnitX u); } // Adapter 는 인터페이스와 다르게 모든걸 오버로딩 하는게 아니라 몇개만 골라서 할 수 있다. // 인터페이슨 강제적으로 구현된 모든것을 오버로딩 해야한다. class UnitX { int currentHP; int x; int y; } class Fighter extends UnitX implements Fightable{ public void move(int x, int y) { } public void ..
package prj190710; class Tire{ int maxRotation; //최대회전수 int acculatedRotation; //누적 회전수 String location; //타이어 위치 Tire(){} //초기 생성자 Tire(String location, int maxRotation){ //파라미터 2개 생성자 this.location = location; //타이어 위치 this.maxRotation = maxRotation; //최대 회전수 } public boolean roll() { //불린타입 메소드 ++acculatedRotation; //누적회전수 증가 if(acculatedRotation < maxRotation) {//누적회전수가 최대 회전수보다 작을때 실행 Syste..
- Total
- Today
- Yesterday
- 정규식 특수문자
- Failed to load resource: the server responded with a status of 404 (Not Found)
- Regex
- PageNotFound - No mapping for GET
- js
- 공백찾기
- JSON파싱
- 정규식 숫자만
- 엑셀다운로드
- 이메일 정규식
- POI EXCEL
- spring 엑셀
- selectbox
- 정규식 한글만
- poi
- jQuery
- ''찾기
- SpringXmlModelInspection
- mybatis
- poi 엑셀
- 인텔리제이
- select제어
- Spring
- 계좌번호정규식
- IntelliJ #gradle #tomcat #spring #springmvc
- JSON
- JSON날짜
- spring error #
- 정규식
- no getter for property named
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |