일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- vim
- c#
- 구조체
- c언어
- github
- jupyter
- Data Structure
- c# 윈폼
- 도커
- docker
- 플러터
- C# delegate
- Algorithm
- 다트 언어
- git
- c# 추상 클래스
- Houdini
- 포인터
- c# winform
- jupyter lab
- gitlab
- HTML
- 유니티
- dart 언어
- Unity
- 깃
- C++
- Python
- C언어 포인터
- Flutter
Archives
- Today
- Total
목록c++ 배열 연산자 오버로딩 (1)
nomad-programmer
[Programming/C++] 2차원 배열접근에 대한 연산자 오버로딩의 예
#include #include #pragma warning(disable: 4996) using std::cout; using std::cin; using std::endl; class BoundCheckIntArray { private: int* arr; int arrlen; explicit BoundCheckIntArray(const BoundCheckIntArray& ref) {} BoundCheckIntArray& operator=(const BoundCheckIntArray& ref) {} public: explicit BoundCheckIntArray(int len) : arrlen(len) { arr = new int[len]; } ~BoundCheckIntArray() { delete[]..
Programming/C++
2021. 2. 5. 11:31