C++設計模式:狀態模式

一、源代碼: #include<iostream> #include<memory> using namespace std; class State; class Context { public: Context() { this->_state = nullptr; } void setState(shared_ptr<State> sta
相關文章
相關標籤/搜索