this指针1.this指针定义2.举例
比较两个成员的大小1)普通函数#include<iostream>using namespace std;class Box{private: int Lenght{ 1 }; int width{ 1 }; int height{ 1 };public: explicit Box(int x, int y, int z):Lenght { x }, width { y }, height { z }{} //三形参的构造函数 int volume...