我想知道,是否有可能建立恢复一部分橄榄树的功能,例如:
#include <iostream>
class Point {
public:
Point(int x, int y){
this->x = x;
this->y = y;
}
?? getXY(){ // I wish this function returned ostream
return ??;
}
private:
int x,y;
};
int main() {
Point P(12,7);
std::cout << "(x,y) = " << P.getXY(); // (12, 7);
}
我祝愿产出:
(x,y) = (12,7)
我不想回到任何str或果阵列。 我可否在一定程度上回去一部分流?