일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- github
- vim
- Data Structure
- c# 추상 클래스
- dart 언어
- git
- 구조체
- gitlab
- Python
- C++
- docker
- jupyter lab
- 유니티
- c# 윈폼
- jupyter
- c언어
- HTML
- 도커
- c# winform
- Flutter
- 다트 언어
- 깃
- Houdini
- 포인터
- Unity
- 플러터
- c#
- C언어 포인터
- C# delegate
- Algorithm
Archives
- Today
- Total
목록c++ 스마트 포인터(Smart Pointer) (1)
nomad-programmer
[Programming/C++] 스마트 포인터(Smart Pointer)
스마트 포인터란 말 그대로 똑똑한 포인터이다. 그리고 스마트 포인터는 객체이다. 포인터의 역할을 하는 객체를 뜻한다. #include #pragma warning(disable: 4996) using std::cout; using std::cin; using std::endl; class Point { private: int xpos, ypos; public: explicit Point(const int x = 0, const int y = 0) : xpos(x), ypos(y) { cout
Programming/C++
2021. 2. 5. 21:44