일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 로또
- 가변인자
- 추상클래스
- 전체
- 페이징
- jquery
- while
- 다운캐스팅
- IBatis procedure
- angular2
- 단축키
- 전체텍스트
- 전자정부
- 업캐스팅
- Random
- 형변환
- 스프링
- 25가지 효율적인 sql작성법
- full text indexing
- 자바 야구게임
- 이클립스
- Login with OAuth Authentication
- 다형성
- 상속예제
- 자바
- 야구게임
- Full text
- 상속
- Validations
Archives
- Today
- Total
nalaolla
오브젝트 예제 2 (this : 초기화 코딩을 복제하는 기능) 본문
728x90
반응형
- 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개의 인자값을 받는 Test02Member(String id)를 바라본다.
- this.pw = pw;
- //this([인자값들]) : 해당생성자의 초기화 코딩을 복제하는 기능
- }
- public Test02Member(String id, String pw, String name, String tel) {
- this(); //this 생성자, 클래스 내부에서 생성
- num++;
- this.id = id;
- this.pw = pw;
- this.name = name;
- this.tel = tel;
- }
- } // end class
- package test.com;
- public class Test02MemberMain {
- public static void main(String[] args) {
- System.out.println("Member...");
- Test02Member t01 = new Test02Member();
- System.out.println(t01.num);
- System.out.println(t01.id);
- System.out.println(t01.pw);
- System.out.println(t01.name);
- System.out.println(t01.tel);
- System.out.println("=========");
- Test02Member t00 = new Test02Member("uuuu", "hhhhh");
- System.out.println(t00.id);
- System.out.println(t00.pw);
- System.out.println("=========");
- Test02Member t02 = new Test02Member("aaa", "bbb", "ccc", "010-123-456");
- System.out.println(t02.num);
- System.out.println(t02.id);
- System.out.println(t02.pw);
- System.out.println(t02.name);
- System.out.println(t02.tel);
- }
- }
728x90
반응형
'JAVA > 7. Object3' 카테고리의 다른 글
오브젝트 예제 4 (통합클래스 객체 생성 및 출력) (0) | 2016.06.22 |
---|---|
오브젝트 예제 3 (게시판 객체생성 및 출력) (0) | 2016.06.22 |
오브젝트 예제 1 (객체 생성 및 출력) (0) | 2016.06.22 |