Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テンプレート引数の違いがわかりません
template <class T> class C { T t; }; void foo() { C<void ()> c1; //isn't compiled C<void (*)()> c2; }
型 void () とは何ですか? このようなタイプはboost::function..で使用されます。
最初の void() は関数ですが、2 番目の void(*)() は関数へのポインターです。