2013-11-28から1日間の記事一覧

インターフェイス 練習

C++

test.csv cola, 10, COOL tea, 20, HOT water, 30, COOLmain.cpp // 自販機クラス #include <vector> #include <string> #include <stdio.h> #include <stdlib.h> #include <iostream> #include <fstream> enum TEMPERATURE{ DRINK_COLD, DRINK_HOT, }; class IDrink { public: virtual TEMPERATURE GetType() = 0; </fstream></iostream></stdlib.h></stdio.h></string></vector>…