私はoperator<<
の呼び出しが2パラメータの関数呼び出しを生成すると考えました。だから、なぜこれはコンパイルされないのですか?ostream用のラムダを作成するには?
#include <iostream> // ostream
#include <iomanip> // setw, setfill
using std::ostream; using std::setw; using std::setfill;
struct Clock {
int h_, m_, s_;
Clock(int hours, int minutes, int seconds)
: h_{hours}, m_{minutes}, s_{seconds} {}
void setClock(int hours, int minutes, int seconds) {
h_ = hours; m_ = minutes; s_ = seconds;
}
friend ostream& operator<<(ostream&os, const Clock& c) {
auto w2 = [](ostream&os, int f) -> ostream& {
return os << setw(2) << setfill('0') << f; };
return os << w2(c.h_) <<':'<<w2(c.m_)<<':'<<w2(c.s_); // ERROR
}
};
エラーは、私は、コールos << w2(os,c.h_)
なくGCCを試み、私はナンセンスた合意
$ g++-6 -std=gnu++1y ...
file.cpp: In function ‘std::ostream& operator<<(std::ostream&, const Clock&)’:
file.cpp:745:33: error: no match for call to ‘(operator<<(std::ostream&, const Clock&)::<lambda(std::ostream&, int)>) (const int&)’
return os << w2(c.h_) <<':'<<w2(c.m_)<<':'<<w2(c.s_);
^
(GCC-6)です。また、ラムダを可能な限り自動で試しました。
auto w2 = [](auto&os, auto f) {
return os << setw(2) << setfill('0') << f; };
でも運がありません。
ヒント
2つのパラメータを必要とするラムダに1つのパラメータのみを渡しています。また、ラムダの戻り値を 'std :: ostream&'である 'operator <<'に渡しています。 – Galik