일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jupyter lab
- c#
- c언어
- 깃
- Unity
- 구조체
- C++
- jupyter
- Python
- c# winform
- dart 언어
- 플러터
- c# 윈폼
- 유니티
- C언어 포인터
- gitlab
- Algorithm
- 도커
- vim
- HTML
- github
- C# delegate
- docker
- Houdini
- c# 추상 클래스
- Data Structure
- git
- 포인터
- 다트 언어
Archives
- Today
- Total
목록c++ 가상 함수 (1)
nomad-programmer
[Programming/C++] 가상 함수를 사용한 다형성의 구현
언제 가상 함수가 필요할까? 가상 함수의 필요성을 알아보려면 소스 코드를 보는 것이 가장 좋다. 다음의 예제를 보자. #include using namespace std; class Shape{ public: void Move(double x, double y); void Draw() const; Shape(); Shape(double x, double y); protected: double _x, _y; }; Shape::Shape(): _x(0), _y(0) {} Shape::Shape(double x, double y): _x(x), _y(y) {} void Shape::Move(double x, double y){ _x = x; _y = y; } void Shape::Draw() const{ cout
Programming/C++
2023. 1. 21. 00:02