일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jquery
- 형변환
- 페이징
- Validations
- full text indexing
- 다형성
- 25가지 효율적인 sql작성법
- Full text
- 전체
- 상속예제
- 로또
- 전자정부
- 단축키
- IBatis procedure
- 이클립스
- 자바
- 전체텍스트
- 다운캐스팅
- angular2
- while
- 스프링
- 야구게임
- 상속
- 추상클래스
- 가변인자
- 자바 야구게임
- Login with OAuth Authentication
- 업캐스팅
- Random
- Today
- Total
목록전체 글 (448)
nalaolla
package test.com; import java.util.Date; public class Test03Board { int num; String title; String content; String name; Date regDate; public Test03Board() { num++; title = "title"; content = "content"; name = "name"; regDate = new Date(); } public Test03Board(int num, String title, String content, String name) { this.num = num; this.title = title; this.content = content; this.name = name; this.r..
package test.com; public class Test02Member { int num; // 회원번호 String id; String pw; String name; String tel; public Test02Member() { num = 99; id = "aaa"; pw = "bbb"; name = "ccc"; tel = "ddd"; } public Test02Member(String id) { this(); // 여기 사용된 this는 인자값 없는 생성자 Test02Member()를 바라본다.. this.id = id; } public Test02Member(String id, String pw) { this("X"); // 여기 사용된 this는 생성자중 1개의 인자값을 받는 Test02..
package test.com; public class Test01Score { int num; String name; int kor; int eng; int math; int total; double avg; String grade; public Test01Score() { num++; name = "KIM"; kor = 77; eng = 88; math = 99; total = kor + eng + math; avg = total / 3.0; if (avg >= 90) { grade = "A"; } else if(avg >= 80) { grade = "B"; } else if(avg >= 70) { grade = "C"; } else if(avg >= 60) { grade = "D"; } else {..
package test.com; public class Test04Car { String kind; int year; String num; int doorCount; public Test04Car() { kind = "승용차"; year = 2015; num = "11가1234"; doorCount = 4; } public Test04Car(String kind, int year, String num, int doorCount) { this.kind = kind; this.year = year; this.num = num; this.doorCount = doorCount; }} package test.com; public class Test05BBB { Test04Car c; Test04Car[] cs;..
package test.com; public class Test03Animal { String kind; // 종류 long count; // 개체수 int life; // 수명 int legCount; // 다리수 Test02Person p; public Test03Animal(Test02Person p) { this.p = p; } public Test03Animal() { kind = "포유류"; count = 1000L; life = 80; legCount = 4; } public Test03Animal(String kind, long count, int life, int legCount) { this.kind = kind; this.count = count; this.life = life; th..
package test.com; public class Test02Person { int height; int weight; String location; String[] friends; public Test02Person() { height = 187; weight = 80; location = "Guri"; friends = new String[3]; friends[0] = "AA"; friends[1] = "BB"; friends[2] = "CC"; } public Test02Person(int height, int weight, String location) { this.height = height; this.weight = weight; this.location = location; friend..