다형성
다형성이 유연하고 동적인 코드를 가능하게 하는 방식을 알아봅니다
다형성은(는) CoddyKit의 무료 Python Academy 강의입니다. 이것은 6개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Python Academy 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Python Academy 강의에는 총 6개의 강의가 포함되어 있습니다.
다형성 소개
다형성 소개
다형성은 객체 지향 프로그래밍(OOP)의 핵심 개념으로, 서로 다른 클래스의 객체를 공통 상위 클래스의 객체처럼 다룰 수 있게 합니다. 이를 통해 코드의 유연성과 재사용성을 높일 수 있습니다.
이 수업에서는 메서드와 클래스를 사용해 파이썬에서 다형성을 구현하는 방법을 배웁니다.

다형성이란 무엇인가요?
다형성이란 무엇인가요?
다형성을 사용하면 서로 다른 클래스의 메서드가 같은 이름을 가지면서도 다르게 동작할 수 있습니다. 이를 통해 코드를 더 유연하고 확장하기 쉽게 만들 수 있습니다.
# Defining a superclass
class Animal:
# Method in the superclass
def speak(self):
print("Animal speaks") # Generic message for all animals
# Defining a subclass that overrides the speak method
class Dog(Animal):
def speak(self):
print("Dog barks") # Specific behavior for Dog메서드를 활용한 다형성
메서드를 활용한 다형성
서로 다른 클래스에서 같은 이름을 가진 메서드가 서로 다른 구현을 제공할 수 있습니다.
# Another subclass with its own implementation of the speak method
class Cat(Animal):
def speak(self):
print("Cat meows") # Specific behavior for Cat
# Function demonstrating polymorphism
# It can accept objects of any subclass of Animal
def animal_sound(animal):
animal.speak() # Calls the appropriate speak method based on the object type
# Creating objects of Dog and Cat
dog = Dog()
cat = Cat()
# Calling the function with different objects
animal_sound(dog) # Outputs: Dog barks
animal_sound(cat) # Outputs: Cat meows메서드 다형성 예시
메서드를 활용한 다형성
서로 다른 클래스에서 같은 이름을 가진 메서드가 서로 다른 구현을 제공할 수 있습니다.
# Another subclass with its own implementation of the speak method
class Cat(Animal):
def speak(self):
print("Cat meows") # Specific behavior for Cat
# Function demonstrating polymorphism
# It can accept objects of any subclass of Animal
def animal_sound(animal):
animal.speak() # Calls the appropriate speak method based on the object type
# Creating objects of Dog and Cat
dog = Dog()
cat = Cat()
# Calling the function with different objects
animal_sound(dog) # Outputs: Dog barks
animal_sound(cat) # Outputs: Cat meows함수를 활용한 다형성
함수를 활용한 다형성
다형성을 사용하면 하나의 함수가 서로 다른 유형의 객체에서 작동할 수 있습니다.
# Defining two unrelated classes
class Bird:
def fly(self):
print("Bird flies") # Behavior specific to birds
class Plane:
def fly(self):
print("Plane flies") # Behavior specific to planes
# Function demonstrating polymorphism
# It can accept objects of both Bird and Plane
def flying_object(obj):
obj.fly() # Calls the appropriate fly method based on the object type
# Creating objects of Bird and Plane
bird = Bird()
plane = Plane()
# Calling the function with different objects
flying_object(bird) # Outputs: Bird flies
flying_object(plane) # Outputs: Plane flies상속을 활용한 다형성
상속을 활용한 다형성
다형성은 하위 클래스가 상위 클래스의 메서드를 재정의하는 상속을 통해 구현되는 경우가 많습니다.
# Superclass representing a generic vehicle
class Vehicle:
def start(self):
print("Vehicle starts") # Generic behavior for all vehicles
# Subclass representing a specific type of vehicle
class Car(Vehicle):
def start(self):
print("Car starts") # Specific behavior for cars
# Subclass representing another specific type of vehicle
class Bike(Vehicle):
def start(self):
print("Bike starts") # Specific behavior for bikes
# Function demonstrating polymorphism
# It can accept objects of any subclass of Vehicle
def start_vehicle(vehicle):
vehicle.start() # Calls the appropriate start method based on the object type
# Creating objects of Car and Bike
car = Car()
bike = Bike()
# Calling the function with different objects
start_vehicle(car) # Outputs: Car starts
start_vehicle(bike) # Outputs: Bike starts다형성의 장점
다형성의 장점
다형성은 여러 가지 장점을 제공합니다:
- 코드 재사용성과 유연성.
- 코드 가독성과 구성 개선.
- 공통 인터페이스의 사용을 장려합니다.
실제 사례
실제 사례
다형성을 활용한 실제 사례를 살펴보겠습니다.
# Real-world example of polymorphism
class Developer:
def work(self):
print("Writing code") # Specific task for developers
class Designer:
def work(self):
print("Designing user interfaces") # Specific task for designers
# Function demonstrating polymorphism
# It can accept objects of both Developer and Designer
def workday(employee):
employee.work() # Calls the appropriate work method based on the object type
# Creating objects of Developer and Designer
developer = Developer()
designer = Designer()
# Calling the function with different objects
workday(developer) # Outputs: Writing code
workday(designer) # Outputs: Designing user interfaces다형성에서 흔히 하는 실수
다형성에서 흔히 하는 실수
다음과 같은 실수를 피해야 합니다:
- 필요한 경우 하위 클래스에서 메서드를 재정의하는 것을 잊기.
- 다중 상속에서 메서드 결정 순서(MRO)를 혼동하기.
- 간단한 작업에 불필요하게 다형성을 사용하기.
무엇을 배웠나요?
무엇을 배웠나요?
이번 수업에서 다음을 배웠습니다:
- 다형성이 무엇이며 파이썬에서 어떻게 작동하는지.
- 메서드와 상속을 활용해 다형성을 구현하는 방법.
- 객체 지향 프로그래밍에서 다형성을 사용하는 장점.
잘하셨습니다! 다음 주제로 넘어가 보겠습니다.

자주 묻는 질문
“다형성” 강의는 무료인가요?
네 — “다형성” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Python Academy 강의 전체를 잠금 해제할 수 있습니다. Python Academy 강의에는 총 6개의 강의가 포함되어 있습니다.
“다형성”에서 뭘 배우나요?
다형성이 유연하고 동적인 코드를 가능하게 하는 방식을 알아봅니다 브라우저에서 직접 실행하는 실습 코드로 Python Academy을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Python Academy을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Python Academy은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 6개 중 4번째 강의입니다.
“다형성” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Python Academy 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Python Academy 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.