我有一个类Samp。在 Samp.cpp 中,我可以定义/声明一个函数,例如
Samp& operator+(Samp& other) {
std::cout << "something";
return other;
}
这个功能到底是什么?我怎么称呼它?
我有一个类Samp。在 Samp.cpp 中,我可以定义/声明一个函数,例如
Samp& operator+(Samp& other) {
std::cout << "something";
return other;
}
这个功能到底是什么?我怎么称呼它?