Fork me on GitHub
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 using namespace std; 8 9 class STSubject; 10 11 //观察者 12 class STObserver 13 { 14 public: 15 virtual void Update(... 阅读全文
posted @ 2017-05-12 22:14 码农的逼格 阅读(465) 评论(0) 推荐(0)
摘要: [root@ ~/learn_code/C++_learn]$ tree.├── main├── main.cpp├── test│ ├── libtest.a│ ├── makefile│ ├── test.c│ ├── test.h│ ├── test.i│ ├── test.o│ └── te 阅读全文
posted @ 2017-05-12 21:27 码农的逼格 阅读(3397) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 4 using namespace std; 5 6 class STSystemA 7 { 8 public: 9 void OperationA() 10 { 11 coutOperationA(); 53 m_... 阅读全文
posted @ 2017-05-12 09:39 码农的逼格 阅读(267) 评论(0) 推荐(0)