-
[자바] interface에 관한 간단한 이해 코드Web/소스코드 2019. 6. 14. 19:31
class Parent{ void hello(){"안녕1"} } interface Parent{ void hello(); } class Child implements Parent{//extends Parent{ void hello(){"안녕2"} } Parent p = new Parent(); p.hello(); Parent p = new Child(); p.hello(); // 안녕2가 출력된다. 왜냐? Child가 parent를 implements하고 있으니까
반응형'Web > 소스코드' 카테고리의 다른 글
[자바] HashMap, Map 사용법 (2) 2019.06.14 test (0) 2019.05.17 [자바] 윤년, 평년 구하는 코드 (0) 2019.05.16 [자바] Socket사용법(cmd창) (0) 2019.05.09 [자바] Thread 소스코드 (1) 2019.05.08