일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Flutter
- c# winform
- 유니티
- c언어
- 플러터
- 구조체
- 깃
- dart 언어
- c#
- c# 윈폼
- C# delegate
- C언어 포인터
- C++
- jupyter lab
- git
- gitlab
- 포인터
- c# 추상 클래스
- HTML
- 도커
- jupyter
- Algorithm
- 다트 언어
- docker
- Unity
- github
- Data Structure
- Python
- Houdini
- vim
Archives
- Today
- Total
목록python Class Method & Static Method (1)
nomad-programmer
[Programming/Python] Class Method & Static Method
클래스 메서드(class method)와 정적 메서드(static method)가 어떻게 다른지 예제를 보며 살펴보자. class MethodClass: @staticmethod def static_method(): print('static method') @classmethod def class_method(cls): print(cls.__name__) if __name__ == '__main__': stc_mtd = MethodClass() stc_mtd.static_method() stc_mtd.class_method() """ 결과 static method MethodClass """ static_method() 함수는 정적 메서드이다. 정적 메서드는 인자로 클래스나 객체를 받지 않는다. 함수의 ..
Programming/Python
2021. 2. 8. 20:25