일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 전자정부
- 전체텍스트
- 로또
- Full text
- Login with OAuth Authentication
- 업캐스팅
- 추상클래스
- 다운캐스팅
- 가변인자
- 단축키
- 페이징
- 다형성
- jquery
- 전체
- 이클립스
- 자바 야구게임
- while
- 스프링
- 야구게임
- 형변환
- IBatis procedure
- 상속예제
- 자바
- angular2
- 상속
- full text indexing
- Validations
- 25가지 효율적인 sql작성법
- Random
- Today
- Total
목록JAVA/6. Object2 (4)
nalaolla
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..
package test.com; public class Test01AAA { private int x; String y; public int[] xs; protected String[] ys;} package test.com; public class Test01Main { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("main..."); // Test01AAA ta01 = new Test01AAA();// System.out.println(ta01);// // ta01 = new Test01AAA();// System.out.println(ta01);// // Test01AAA t..