6

我有一个类Samp。在 Samp.cpp 中,我可以定义/声明一个函数,例如

 Samp& operator+(Samp& other) {
  std::cout << "something";
  return other;
}

这个功能到底是什么?我怎么称呼它?

4

1 回答 1

11

这实际上是一个一元+,你这样称呼它:

Samp s;
+s; // <-- here
于 2013-10-10T20:59:41.930 回答