Override1 파이썬에서 메서드(함수) 오버라이드(override) 먼저 오버라이드(override)란 간단히 말하면 같은 이름을 가진 메소드(함수)를 다른 기능으로 재정의 해서 사용할 수 있는 것입니다. 파이썬에서는 다음과 같이 구현할 수 있습니다. class Parent: def method(self): print("This is from the Parent class")# 부모 클래스를 상속한 클래스class Child(Parent): # 부모 클래스와 같은 이름을 갖지만 다른 기능으로 정의 def method(self): print("This is from the Child class")c = Child()c.method() 위 결과를 출력하면 다음과 같은 결과를 출력합니다. "This is from the Child c.. 2023. 11. 15. 이전 1 다음