类的声明与组成
类的概念:类就是数据和函数的封装体。
eg:
class rect{
private:
float x, y;
public:
void set(float a, float b);
float perimeter();
float area();
};