C++改写为C

stm使用中,经常能见到CPP的示例,这些是给arduino,esp32用的,stm32 也支持cpp但是你就想用c怎么办呢,比如我在新手的时候:: 这个双冒号就难住了英雄好汉

比如这是个cpp的 如果类不多的情况下 改写为c

cpp 复制代码
#include <iostream>

using namespace std;

class Box
{
public:
    double length;   // 长度
    double breadth;  // 宽度
    double height;   // 高度
    // 成员函数声明
    double get(void){
        return length * breadth * height;
    };
    void set( double len, double bre, double hei ){
        length = len;
        breadth = bre;
        height = hei;
    };
};
// 成员函数定义
//double Box::get(void)
//{
//    return length * breadth * height;
//}

//void Box::set( double len, double bre, double hei)
//{
//    length = len;
//    breadth = bre;
//    height = hei;
//}
int main( )
{
    Box Box1;        // 声明 Box1,类型为 Box
    Box Box2;        // 声明 Box2,类型为 Box
    Box Box3;        // 声明 Box3,类型为 Box
    double volume = 0.0;     // 用于存储体积

    // box 1 详述
    Box1.height = 5.0;
    Box1.length = 6.0;
    Box1.breadth = 7.0;

    // box 2 详述
    Box2.height = 10.0;
    Box2.length = 12.0;
    Box2.breadth = 13.0;

    // box 1 的体积
    volume = Box1.height * Box1.length * Box1.breadth;
    cout << "Box1 的体积:" << volume <<endl;

    // box 2 的体积
    volume = Box2.height * Box2.length * Box2.breadth;
    cout << "Box2 的体积:" << volume <<endl;


    // box 3 详述
    Box3.set(16.0, 8.0, 12.0);
    volume = Box3.get();
    cout << "Box3 的体积:" << volume <<endl;
    return 0;
}

改写为C:

cpp 复制代码
//#include <iostream>
#include <stdio.h>

//using namespace std;

//class Box
//        {
//                public:
double Box1length;   // 长度
double Box1breadth;  // 宽度
double Box1height;   // 高度
// 成员函数声明
double get(void);
//void set( double len, double bre, double hei );
//        };
// 成员函数定义
double Box1get(void)
{
    return Box1length * Box1breadth * Box1height;
}//暂时没用

void Box1set( double len, double bre, double hei)
{
    Box1length = len;
    Box1breadth = bre;
    Box1height = hei;
}//暂时没用
int main( )
{
//    Box Box1;        // 声明 Box1,类型为 Box
//    Box Box2;        // 声明 Box2,类型为 Box
//    Box Box3;        // 声明 Box3,类型为 Box
    double volume = 0.0;     // 用于存储体积

    // box 1 详述
    Box1height = 5.0;
    Box1length = 6.0;
    Box1breadth = 7.0;

    // box 2 详述
//    Box2.height = 10.0;
//    Box2.length = 12.0;
//    Box2.breadth = 13.0;

    // box 1 的体积
    printf("Box1height:%f",Box1height);
    volume = Box1height * Box1length * Box1breadth;
    printf("%f",volume);
//    cout << "Box1 的体积:" << volume <<endl;

    // box 2 的体积
//    volume = Box2.height * Box2.length * Box2.breadth;
//    cout << "Box2 的体积:" << volume <<endl;
//
//
//    // box 3 详述
//    Box3.set(16.0, 8.0, 12.0);
//    volume = Box3.get();
//    cout << "Box3 的体积:" << volume <<endl;
    return 0;
}

就是把类的东西完全拆成普通的,这样你可能需要多打很多代码,

相关推荐
晓纪同学27 分钟前
QT-简单视觉框架代码
开发语言·qt
威桑27 分钟前
Qt SizePolicy详解:minimum 与 minimumExpanding 的区别
开发语言·qt·扩张策略
飞飞-躺着更舒服31 分钟前
【QT】实现电子飞行显示器(简易版)
开发语言·qt
明月看潮生36 分钟前
青少年编程与数学 02-004 Go语言Web编程 16课题、并发编程
开发语言·青少年编程·并发编程·编程与数学·goweb
明月看潮生40 分钟前
青少年编程与数学 02-004 Go语言Web编程 17课题、静态文件
开发语言·青少年编程·编程与数学·goweb
Java Fans42 分钟前
C# 中串口读取问题及解决方案
开发语言·c#
盛派网络小助手1 小时前
微信 SDK 更新 Sample,NCF 文档和模板更新,更多更新日志,欢迎解锁
开发语言·人工智能·后端·架构·c#
Chinese Red Guest1 小时前
python
开发语言·python·pygame
一棵星2 小时前
Java模拟Mqtt客户端连接Mqtt Broker
java·开发语言
爱吃西瓜的小菜鸡2 小时前
【C语言】判断回文
c语言·学习·算法