- Jul 16 Mon 2018 00:16
Social Innovation Reading Marathon: 0715
- Jun 26 Tue 2018 21:32
C++ 複習:Exception、try-throw-catch
#include <iostream>
#include <stdexcept>
- Jun 06 Wed 2018 11:33
C++ 自刻Insertion Sort
#include <iostream>
using namespace std;
- Jun 06 Wed 2018 11:32
C++ 自刻stack
#include <iostream>
using namespace std;
- Jun 06 Wed 2018 09:26
C++ 實作自製雙向鏈結串鏈+template開放資料型態
#include <iostream>
using namespace std;
- May 30 Wed 2018 11:36
C++ 隨堂測驗Linklist
- May 30 Wed 2018 11:22
C++ 自製Linklist-以main來insert, remove
#include <iostream>
using namespace std;
- May 16 Wed 2018 11:38
C++ 多形
- May 16 Wed 2018 11:24
C++ 多重繼承
child類別,同時繼承father類別及mother類別。
注意若father及mother都有相同名稱的data或function,要在child類別使用name space來指定繼承。否則會發生name conflict。
- May 16 Wed 2018 10:06
C++ Composition+Inheritance實作-以car為例