次のコードを持っている:
template<typename T, typename OutStream = std::ostream> struct print {
OutStream &operator()(T const &toPrint, OutStream &outStream = std::cout) const {
outStream << toPrint;
return outStream;
}
};
この呼び出しは誤りです:
print<int>(2);
エラーメッセージ:
1>main.cpp(38): error C2440: '<function-style-cast>' : cannot convert from 'int' to 'print<T>'
1> with
1> [
1> T=int
1> ]
1> No constructor could take the source type, or constructor overload resolution was ambiguous
この呼び出しは誤りではありません:
print<int> intPrinter;
intPrinter(2);
インスタンス化せずに関数オブジェクトを使用できますか?部分的な特殊化機能が必要なため、ここではテンプレート関数を使用できません。