Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코로나19
- if조건절
- 게임QA
- sort함수
- UE4
- happen to
- know
- continue to
- 명세기반테스트
- keep -ing
- java
- gameQA
- for ing
- relif
- might have p.p
- 제5인격
- 명절 표현
- by any chance
- counldn't have
- Realtime Rendering
- end up ing
- I'm glad
- by until
- 형변환
- C++
- ISTQB
- 변수
- html
- it's a good thing
- metascore
Archives
- Today
- Total
목록overriding (1)
Records rather than Memories
overriding
지금까지는 자식 클래스가 메소드를 추가하는 개념이었다. 지금부터는 자식 객체가 좀더 가치 있는 부품으로써 사용되기 위해서 부모가 물려준 메소드 중 하나를 자식에서 기능을 덮어쓰기 해서 독자적인 메소드를 정의하는 것을 말한다. 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 32 33 34 35 36 37 38 39 package org.opentutorials.javatutorials.overriding.example1; class Calculator { int left, right; public void setOprands(int left, int right) { this.left = left; thi..
Software/JAVA
2019. 10. 21. 18:32