鍋あり谷あり

テーマを決めずに適当に書いています。

2008-05-01から1ヶ月間の記事一覧

私の知らないC++

今日はあんまり文章を書く時間がないので、ソースから: namespace Foo{ class baz{}; void f( baz ){ cout << "Foo::f" << endl; } } template< typename T > void f( T const & ){ cout << "global f" << endl; } void test() { Foo::baz x; f( x ); // Fo…