[Python] 클래스 상속하기

    부모 클래스에 있는 클래스를 자기 것 처럼 사용 할수 있는 방식.

    이를 상속이라고 부른다.

     

     

    class 기반클래스이름(기반 클래스 이름):

    상속 방법은 이와 같다.

     

     

    class Person:
    	def greeting(self):
        	print('안녕하세요.')
            
    class Student(Person):
    	def study(self):
        	print('공부하기')
            
    james = Student()
    james.greeting()
    james.study()

    >>>안녕하세요.

    >>>공부하기

     

     

    Student class에는 greeting 메서드가 없다. 그러나 Person을 상속 했기 때문에

    자기것처럼 사용 할 수 있게 되었다. 이를 상속관계라고 부른다.

    반응형

    댓글

    Designed by JB FACTORY