Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- WML
- xmldom
- asp함수
- XML
- MSSQL보안
- 이미지세로길이
- instr
- tempDB
- jdbc driver
- wap
- VarType
- 한글입력체크
- array
- injection
- JavaScript
- update
- inner join
- 정규식
- FileSystemObject
- 이미지가로길이
- javascript 한글입력체크
- SPLIT
- sql업데이트
- join
- 자바기초
- sql랭킹
- 인젝션
- ERD
- VARIABLE
- sql순위
Archives
- Today
- Total
3초기억력
상속 : 문제3) 핸드폰 모델명, 번호, 벨소리. 추가 : 사이즈, pixel 본문
//기본 : 모델명, 번호, 벨소리
//생성자 생성
//기능 : set number, get model, get chord
// 추가 : 사이즈
// 추가 : pixel
package Inheritance;
class Cellphone{
String model; //모델명
String number; //폰번호
int chord; //벨소리
//생성자 생성
public Cellphone(String model, String number, int chord) {
this.model = model;
this.number = number;
this.chord = chord;
}
void setNumber(String number) { //번호 재저장
this.number = number;
}
String getModel() {
return this.model;
}
String getNumber() {
return number;
}
int getChord(int b) {
this.chord = b;
return chord;
}
@Override
public String toString() {
return "Cellphone [model=" + model + ", number=" + number + ", chord=" + chord + "]";
}
}
class MP3Phone extends Cellphone{
int size;
public MP3Phone(String mod, String num, int cho, int size) {
super(mod, num, cho); //부모 생성자 호출 - 초기화
this.size = size;
}
}
class DicaPhone extends Cellphone{
String pixel;
public DicaPhone(String mod, String num, int cho, String pixel) {
super(mod, num, cho); //부모 생성자를 호출하는 super는 맨 상위에 작성!
this.pixel = pixel;
}
}
public class exam_CellPhoneMain {
public static void main(String[] args) {
Cellphone c1 = new Cellphone("aaaa", "2222222", 333333);
System.out.println(c1);
System.out.println("==============");
DicaPhone d1 = new DicaPhone("삼성 갤럭시", "010-1111-2222", 24, "100px");
System.out.println(d1.getModel());
System.out.println(d1);
System.out.println("==============");
MP3Phone m1 = new MP3Phone("LG V50", "010-3333-4444", 24, 600);
System.out.println(m1.getNumber());
System.out.println(m1);
}
}
'자바_기초' 카테고리의 다른 글
게임) 상속, 오버라이딩 (0) | 2019.05.27 |
---|---|
객체배열 : 클래스들의 배열 (0) | 2019.05.27 |
상속 : 문제2)계좌정보, 입금, 출금. 카드번호 추가. pay 메서드 (0) | 2019.05.27 |
상속 : 문제1)평균 클래스를 상속을 받아서 평균과 총점을 구하는 하위 클래스를 생성 (0) | 2019.05.27 |
상속 : 부모클래스 -> 자식클래스 (0) | 2019.05.27 |
Comments