일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jupyter
- Unity
- github
- 도커
- c#
- C# delegate
- c# winform
- c# 윈폼
- HTML
- gitlab
- Houdini
- jupyter lab
- Data Structure
- C언어 포인터
- docker
- vim
- 유니티
- 포인터
- Algorithm
- 다트 언어
- c# 추상 클래스
- Flutter
- 플러터
- dart 언어
- git
- c언어
- 구조체
- C++
- Python
- 깃
Archives
- Today
- Total
목록c++ 단항 연산자 오버로딩 (1)
nomad-programmer
[Programming/C++] 연산자 오버로딩
단항 연산자 오버로딩 오버로딩이 가능한 단항 연산자는 !, &, ~, *, +, -, ++, -- 형 변환 연산자이다. ++, --연산자로 단항 연산자 오버로딩에 대해 알아보자. ++, -- 연산자 오버로딩 ++ 연산자는 전위 ++ 연산자와 후위 ++ 연산자가 있습니다. 컴파일러와 약속된 함수는 operator++() 와 operator++(int) 입니다. #include using namespace std; class Point { public: Point(const int x, const int y); ~Point(); void Print() const; // 전위 ++, -- const Point& operator++(); const Point& operator--(); // 후위 ++, -- c..
Programming/C++
2023. 1. 19. 18:15