Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- base from member
- diamond inheritance
- c++ basic practice
- std::cout
- virtual function table
- discord bot
- delete function
- virtual function
- 더 지니어스 양면포커
- operator overloading
- c++ multi chatting room
- vector size
- pointer to member data
- suffix return type
- conversion constructor
- std::ostream
- member function pointer
- std::vector
- constructor
- std::endl
- C++
- increment operator
- dynamic_cast
- new&delete
- virtual destructor
- return by reference
- vector capacity
- this call
- placement new
- virtual inheritance
Archives
- Today
- Total
목록Template Method Pattern (1)
I'm FanJae.
[C++ Design Pattern] Template Method Pattern
1. Template Method Pattern의 정의 오퍼레이션에는 알고리즘의 처리 과정만을 정의하고 각 단계에서 수행할 구체적인 처리는 서브클래스에서 정의한다. Template Method 패턴은 "알고리즘 처리과정은 변경하지 않고 알고리즘 각 단계의 처리를 서브클래스에서 재정의" 할 수 있게 한다. 1-1. 예제를 통한 Template Method Pattern의 필요성 이해 (코드의 중복)#include #include "Painter.h"class Shape{public: virtual ~Shape() {} virtual void draw() = 0;};class Rect : public Shape{public: void draw() override { std::cout..
C++/Design Pattern
2024. 9. 18. 23:07