2024.3.12 C++

1、自己封装一个矩形类(Rect),拥有私有属性:宽度(width)、高度(height)

定义公有成员函数初始化函数:void init(int w, int h)更改宽度的函数:set w(int w)更改高度的函数:set h(int h)输出该矩形的周长和面积函数:void show()

cpp 复制代码
#include <iostream>

using namespace std;
class Rect
{
private:
    int width;
    int height;
public:
    void init(int w, int h)
    {
        width = w;
        height = h;
    }
    void set_w(int w)
    {
        width = w;
    }
    void set_h(int h)
    {
        height = h;
    }
    void show()
    {
        cout << "width = " << width << endl;
        cout << "height = " << height << endl;
    }

};

int main()
{
    Rect rec1;
    rec1.init(5, 6);
    rec1.show();

    rec1.set_w(7);
    rec1.set_h(9);
    rec1.show();


    return 0;
}

2、思维导图

相关推荐
2301_7951672013 小时前
Python 高手编程系列八:缓存
开发语言·python·缓存
极地星光13 小时前
C++链式调用设计:打造优雅流式API
服务器·网络·c++
8***293113 小时前
Go基础之环境搭建
开发语言·后端·golang
Yue丶越13 小时前
【C语言】自定义类型:联合体与枚举
c语言·开发语言
小陈要努力13 小时前
Visual Studio 开发环境配置指南
c++·opengl
程序猿本员13 小时前
5. 实现
c++
csbysj202014 小时前
DOM 节点
开发语言
Bona Sun14 小时前
单片机手搓掌上游戏机(十五)—pico运行fc模拟器之编译环境
c语言·c++·单片机·游戏机
小尧嵌入式14 小时前
C++基础语法总结
开发语言·c++·stm32·单片机·嵌入式硬件·算法
white-persist14 小时前
【攻防世界】reverse | IgniteMe 详细题解 WP
c语言·汇编·数据结构·c++·python·算法·网络安全