所以我有这个简单的C++ Logger类。
class Log{
public:
Log(const int& msgLevel = 1){
this->msgLevel = msgLevel;
}
template <class T>
Log& operator<<(const T& v){
if (msgLevel<=level) {
std::cout << v;
}
return *this;
}
~Log(){
}
static int level;
int msgLevel;
};
int Log::level = 1;
我可以这样使用它:
Log(1)<<"My debug info: "<<otherVariable;
问题是当我尝试使用endl
时:
Log(1)<<"My debug info: "<<otherVariable<<endl;
我收到此错误:
error C2678: binary '<<' : no operator found which takes a left-hand operand of type 'Log' (or there is no acceptable conversion)
为了解决此错误,我需要向我的类添加另一个方法,如下所示:
// For manipulators like endl
Log& operator<< (ostream& (*pf) (ostream&)) {
if (msgLevel<=level) {
cout << pf;
}
return *this;
}
但是添加此方法只是为了处理endl
这对我来说似乎有点矫枉过正。有没有更好的选择?
另一种选择是仅使用""而不是endl;
因为
endl
是一个函数模板,所以operator<<
的简单版本还不够好,因为有多种可能的方式可以通过对endl
使用不同的模板参数来匹配。 添加第二个重载可能是你能做的最好的事情。
但是,您可以分解出常见逻辑,如下所示:
template <class T>
Log& operator<<(const T& v){ return write(v); }
Log& operator<<(ostream& (*v)(ostream&)){ return write(v); }
template <typename T>
Log& write(const T &v)
{
if (msgLevel<=level) {
std::cout << v;
}
return *this;
}