揮発性のメモ2

http://d.hatena.ne.jp/iww/

2012-07-03から1日間の記事一覧

実体をまるごと返すとキャストされる

C++

#include <string> #include <iostream> using namespace std; class Hoge { public: virtual string to_str(){ return "hoge"; } }; class Piyo : public Hoge { public: virtual string to_str(){ return "piyo"; } }; Hoge *getp() { return new Piyo(); } Hoge get() { Piy</iostream></string>…