일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 야구게임
- 업캐스팅
- 전체텍스트
- full text indexing
- Full text
- while
- 상속
- 로또
- 다형성
- 페이징
- 상속예제
- 단축키
- 형변환
- 자바
- 자바 야구게임
- 전체
- 가변인자
- Random
- 스프링
- Validations
- 25가지 효율적인 sql작성법
- Login with OAuth Authentication
- 전자정부
- angular2
- 추상클래스
- 이클립스
- 다운캐스팅
- IBatis procedure
- Today
- Total
목록JAVA/7. Object3 (4)
nalaolla
package test.com; public class Test04TotalMain_01 { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("Total..."); //통합클래스 객체 생성 및 출력 Test04Total_01 t01 = new Test04Total_01(); //System.out.println(t01); System.out.println("========= score processing.. ========="); Test01Score ts01 = new Test01Score("KIM", 90, 95, 89); Test01Score ts02 = new Test01Sco..
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 {..