夏老師零基礎(chǔ)學(xué)習(xí)在Linux上編譯調(diào)試C++項(xiàng)目視頻課程
class stone {
? ?private:
? ? ? ?int _w, _h, _weight;
? ?public:
? ? ? ?stone(int w, int h, int we) : _w(w), _h(h), _weight(we) {}
? ? ? ?// 重載運(yùn)算符<
? ? ? ?bool operator <(const stone& rhs) {
? ? ? ? ? ?return this->_weight < rhs._weight;
? ? ? ?}
? ? ? ?int getWeight() {
? ? ? ? ? ?return _weight;
? ? ? ?}};int main() {
標(biāo)簽: