名称查找和操作员超载如何工作?

时间:2018-06-12 07:53:36

标签: c++ operator-overloading overloading name-lookup

我想将一些私有库class ns::A输出到plog,因此我将operator <<重载添加到ns::A

以下代码无法编译。

error: no match for ‘operator<<’ (operand types are ‘std::ostringstream’ {aka ‘std::__cxx11::basic_ostringstream<char>’} and ‘const ns::A’)
     out << t;
     ~~~~^~~~

但是将名称空间other更改为nsplogplog::detailstd会使编译错误消失,为什么? std::cout<<std::ostringstream<<无论如何都可行。

#include <iostream>
#include <sstream>

namespace plog {
namespace detail {}
struct Record {
  template <typename T>
  Record& operator<<(const T& t) {
    using namespace plog::detail;

    out << t;
    return *this;
  }
  std::ostringstream out;
};
}

namespace ns {
struct A {};
}

namespace other {}

namespace other { // changing other to ns, plog, plog::detail or std will fix compiling error
inline std::ostream& operator<<(std::ostream& os, const ns::A& a) { return os; }
}

int main() {
  ns::A a;
  using namespace plog;
  using namespace plog::detail;
  using namespace ns;
  using namespace other;
  std::cout << a;
  std::ostringstream oss;
  oss << a;
  plog::Record s;
  s << a; // compiling error
}

1 个答案:

答案 0 :(得分:1)

在你main

int main() {
  ns::A a;
  using namespace plog;
  using namespace plog::detail;
  using namespace ns;
  using namespace other;
  std::cout << a;
  std::ostringstream oss;
  oss << a;
  plog::Record s;
  s << a; // compiling error
}

您的using namespace仅适用于main的范围,不会“传播”(至plog::Record::operator<< (const T& t))。

然后s << a;plog::Record::operator<< (const T& t) = T致电ns::A

所以,在

Record& operator<<(const T& t)
{
    using namespace plog::detail;

    out << t;
    return *this;
}

out << t;T = ns::A)将查看命名空间(使用ADL):

  • 全局命名空间
  • 名称空间plogplog::Record
  • 名称空间plog::detailusing namespace plog::detail;
  • 名称空间stdstd::ostringstream out
  • 名称空间nsns::A

other::operator<<未被考虑,并且您没有有效匹配,因此编译错误。