๋คํ์ฑ - ๊ฐ์ ๋ชจ์์ ์ฝ๋๊ฐ ๋ค๋ฅธ ๋์์ ํ๋ ๊ฒ - ์ฝ๋์ ์์ ์ค์ด๊ณ , ์ฌ๋ฌ ๊ฐ์ฒด ํ์
์ ํ๋์ ํ์
์ผ๋ก ๊ด๋ฆฌ๊ฐ ๊ฐ๋ฅํ์ฌ ์ ์ง ๋ณด์์ ์ข๋ค. - ๋ฉ์๋ ์ค๋ฒ๋ผ์ด๋ฉ๋ ๋คํ์ฑ์ ํ ์ ์์ 1) #๋คํ์ฑ ์์ 1 class Person: def __init__(self, name): self.name = name def work(self): print(self.name + " works hard") clas s Student(Person): def work(self): print(self.name + ' studies hard') class Engineer(Person): def work(self): print(self.name + "develope someting") student = Student("..
[Python] ๋คํ์ฑ, property
๋คํ์ฑ - ๊ฐ์ ๋ชจ์์ ์ฝ๋๊ฐ ๋ค๋ฅธ ๋์์ ํ๋ ๊ฒ - ์ฝ๋์ ์์ ์ค์ด๊ณ , ์ฌ๋ฌ ๊ฐ์ฒด ํ์
์ ํ๋์ ํ์
์ผ๋ก ๊ด๋ฆฌ๊ฐ ๊ฐ๋ฅํ์ฌ ์ ์ง ๋ณด์์ ์ข๋ค. - ๋ฉ์๋ ์ค๋ฒ๋ผ์ด๋ฉ๋ ๋คํ์ฑ์ ํ ์ ์์ 1) #๋คํ์ฑ ์์ 1 class Person: def __init__(self, name): self.name = name def work(self): print(self.name + " works hard") clas s Student(Person): def work(self): print(self.name + ' studies hard') class Engineer(Person): def work(self): print(self.name + "develope someting") student = Student("..
2020.11.24