ASCII file을 print하는 method를 갖고 있는 object, binary file을 print하는 method를…
문제풀이 모드
0
정답률 : -
ASCII file을 print하는 method를 갖고 있는 object, binary file을 print하는 method를 갖고 있는 object, picture file을 print하는 method를 갖고 있는 object들은 모두 "print"라는 method를 갖고 있으므로 "print"란 메시지를 받으면 수행을 하게 된다. 그러나 각각의 method에서 print를 수행하는 방법은 모두 다를 것이다. 객체지향 시스템에서 이와 같이 서로 다른 class들이 같은 의미의 응답을 하는 특성을 무엇이라고 하는가?
캡슐화(Encapsulation)
상속성(Inheritance)
다형성(Polymorphism)
추상화(Abstraction)
채점하기