생성자
: 객체에 초깃값을 설정해야 할 필요가 있을 때 생성자를 구현한다. 객체가 생성될 때 자동으로 호출되는 메서드를 말한다.__init__ 사용
ex)
class FourCal:
def __init__(self,first,second):
self.first=first
self.second=second
def setdata(self,first,second):
self.first=first
self.second=second
def add(self):
result=self.first+self.second
return result
def mul(self):
result=self.first*self.second
return result
def div(self):
result=self.first/self.second
return result
a=FourCal()
a.setdata(4,2)
a.add()
b=FourCal(3,6)
: class 클래스 이름 (상속할 클래스 이름)
: 기존 클래스를 변경하지 않고 기능을 추가하거나 기존 기능을 변경하려고 할 때 이용
class MoreFourCal(FourCal):
def pow(self):
result=self.first**self.second
return result
a=MoreFourCal(4,2)
a.pow()
: 부모 클래스에 있는 메서드를 동일한 이름으로 다시 만드는 것. 메서드를 오버라이딩하면 부모클래스의 메서드 대신 오버라이딩한 메서드가 호출된다.
class MoreFourCal(FourCal):
def div(self):
if self.second==0:
return 0
else:
return self.first/self.second
: 클래스 변수는 클래스로 만든 모든 객체에 공유된다.
class Family:
lastname="kim"