Language/Python
파이썬의 @property 개념 및 사용방법(접근지정자와 GET, SET 메소드)
@property를 살펴보기전에 Get,Set method의 알아야하고, Get, Set method를 위해 접근지정자 private, public, protected에 대해 알아둘 필요가 있다. 접근지정자(Access Modifier) 접근지정자에는 private, public, protected, default가 있다. 하지만, 높은 자유도 및 편리함을 추구하는 파이썬(Python)에는 접근지정자라는 개념이 없다. 그렇다고 사용 못하는 것은 아니다. class cTest : def __init__(self) : pass def public(self) : print("Call public()") def _protected(self) : print("Call _protected()") def __priv..
2018. 12. 27. 11:09
최근댓글