πŸ—£οΈ/Python

[Python] 클래슀

sssbin 2022. 1. 20. 23:58

 

ν΄λž˜μŠ€μ™€ 객체

- 클래슀둜 λ§Œλ“  κ°μ²΄λŠ” κ°μ²΄λ§ˆλ‹€ κ³ μœ ν•œ 성격을 가짐.

- λ™μΌν•œ 클래슀둜 λ§Œλ“  객체듀은 μ„œλ‘œ μ „ν˜€ 영ν–₯을 주지 μ•ŠλŠ”λ‹€.

# μ˜ˆμ‹œ) 사칙연산 클래슀

class FourCal:
    def setdata(self, first, second):
        self.first = first
        self.second = second

    def add(self):
        result = self.first + self.second
        return result

    def sub(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

first, second, num = map(int, input().split())

cal = FourCal()
cal.setdata(first, second)

if num == 1:
    res = cal.add()
elif num == 2:
    res = cal.sub()
elif num == 3:
    res = cal.mul()
else:
    res = cal.div()

print(res)

 

μƒμ„±μž(Counstructor)

- 객체가 생성될 λ•Œ μžλ™μœΌλ‘œ ν˜ΈμΆœλ˜λŠ” λ©”μ„œλ“œ

- __init__ 이용

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 sub(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

first, second, num = map(int, input().split())

cal = FourCal(first, second)	# 객체 생성 μ‹œ μƒμ„±μžμ˜ λ§€κ°œλ³€μˆ˜μ— ν•΄λ‹Ήλ˜λŠ” 값을 μ „λ‹¬ν•΄μ€˜μ•Ό 함

if num == 1:
    res = cal.add()
elif num == 2:
    res = cal.sub()
elif num == 3:
    res = cal.mul()
else:
    res = cal.div()

print(res)

 

클래슀 상속

- μ–΄λ–€ 클래슀λ₯Ό λ§Œλ“€ λ•Œ λ‹€λ₯Έ 클래슀의 κΈ°λŠ₯을 물렀받을 수 있게 λ§Œλ“œλŠ” 것

- class 클래슀 이름(상속할 클래슀 이름)

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 sub(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

class MoreFourCal(FourCal):	# FourCal을 상속
    def pow(self):
        result = self.first ** self.second
        return result

first, second, num = map(int, input().split())

cal = MoreFourCal(first, second)

if num == 1:
    res = cal.add()
elif num == 2:
    res = cal.sub()
elif num == 3:
    res = cal.mul()
else:
    res = cal.div()

print(res)
print(cal.pow())

 

λ©”μ„œλ“œ μ˜€λ²„λΌμ΄λ”©

- λΆ€λͺ¨ ν΄λž˜μŠ€μ— μžˆλŠ” λ©”μ„œλ“œλ₯Ό λ™μΌν•œ μ΄λ¦„μœΌλ‘œ λ‹€μ‹œ λ§Œλ“œλŠ” 것

- λ©”μ„œλ“œλ₯Ό μ˜€λ²„λΌμ΄λ”©ν•˜λ©΄ λΆ€λͺ¨ 클래슀의 λ©”μ„œλ“œ λŒ€μ‹  μ˜€λ²„λΌμ΄λ”©ν•œ λ©”μ„œλ“œ 호좜

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 sub(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

class MoreFourCal(FourCal):
    def pow(self):
        result = self.first ** self.second
        return result
    
class SafeFourCal(FourCal):
    def div(self):	# λ©”μ„œλ“œ μ˜€λ²„λΌμ΄λ”©
        if self.second == 0:
            return 0
        else:
            return self.first / self.second

first, second, num = map(int, input().split())

cal = MoreFourCal(first, second)

if num == 1:
    res = cal.add()
elif num == 2:
    res = cal.sub()
elif num == 3:
    res = cal.mul()
else:
    res = cal.div()

print(res)
print(cal.pow())

 

클래슀 λ³€μˆ˜

- 클래슀둜 λ§Œλ“  λͺ¨λ“  객체에 곡유됨.