일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 토큰경제
- html plug-in
- border-box
- mac terminal command
- #성적관리프로그램
- hyperledger transaction
- html id
- html multimedia
- #C++ 연산자함수오버로딩
- #binary
- html youtube
- git flow
- #자바상속#자바이즈어#is~a
- html code
- #3차원배열
- html5 new tag
- #C++ has~a
- relative path
- #CallByAddress
- #1차원배열
- docker example
- 하이퍼레저패브릭
- #JAVASCRIPT
- #2차원배열
- #다차원포인터
- #bubbleSort
- html charset
- html video
- #android activity
- html object
Archives
- Today
- Total
A sentimental robot
Inheritance exercise(1) 본문
public class AA {
private String str;
public void setStr(String str){
this.str=str;
}
public String getStr(){
return str;
}
}
public class BB extends AA{
private int aa;
public void setAa(int aa) {
this.aa = aa;
}
public int getAa() {
return aa;
}
}
public class CC extends BB{
public static void main(String []args){
CC cc=new CC();
cc.setStr("Superman");
cc.setAa(1000);
System.out.println(cc.getStr());
System.out.println(cc.getAa());
}
}
'Java' 카테고리의 다른 글
Overridding, 재정의 (0) | 2017.12.29 |
---|---|
Inheritance exercise(2) (0) | 2017.12.29 |
Is~a 상속관계 (0) | 2017.12.29 |
Extended.ver (0) | 2017.12.28 |
"Has~A" exercise (0) | 2017.12.28 |