2005-08-24から1日間の記事一覧

型マッチング

こんなことをしてもマッチして欲しいと思う。無理? #include <iostream> using namespace std; class CDisplayInt { public: void operator()(int x) { cout << "int:" << x << endl; } }; class MakePrintingObject { public: operator CDisplayInt() { return CDisp</iostream>…