码迷,mamicode.com
首页 >  
搜索关键字:battery    ( 166个结果
c++实验4
project1: #ifndef BATTERY_H #define BATTERY_H class Battery { public: Battery(int batterySize0 = 70); Battery(const Battery& b0); int getbattery(); pr ...
分类:编程语言   时间:2019-05-18 23:51:22    阅读次数:174
c++实验四
battery.h: battery.cpp: car.h: car.cpp; electriccar.h: electriccar.cpp: main.cpp: 运行截图: arrayInt.h: arrayInt.cpp: main.cpp: 运行截图: ...
分类:编程语言   时间:2019-05-18 21:11:50    阅读次数:143
实验4
1. 车辆基本信息管理 问题场景描述如下: 为了对车量基本信息进行管理,对现实世界车量基本信息抽象后,抽象出Car类、ElectricCar类、Battery类, 它们之间的关系描述如下:基于Car类派生出ElectricCar类,派生类ElectricCar中新增数据成员为Battery类 对象。 ...
分类:其他好文   时间:2019-05-18 15:59:48    阅读次数:127
实验四
实验结论: (1) #ifndef BATTERY_H #define BATTERY_H class Battery { public: Battery(int x=70); int showbattery(); int batterySize; }; #endif #ifndef CAR_H # ...
分类:其他好文   时间:2019-05-18 15:54:59    阅读次数:131
实验四 类的继承、派生和多态(1)
一、实验内容 1、车辆基本信息管理 基于Car类派生出ElectricCar类、派生类ElectricCar中新增数据成员Battery类对象。 #ifndef BATTERY_H #define BATTERY_H class Battery { public: Battery(int batte ...
分类:其他好文   时间:2019-05-18 00:21:41    阅读次数:157
实验四
题一: #ifndef BATTERY_H #define BATTERY_H class Battery { public: Battery(int x = 70); int getbattery()const; private: int batterySize; }; #endif #ifnde ...
分类:其他好文   时间:2019-05-17 19:36:08    阅读次数:170
c++第四次实验
1.车辆基本信息管理 battery.h battery.cpp car.h car.cpp electricCar.h electricCar.cpp main.cpp 更改了一些信息,并且在里程数小于之前时会报错 2.补足程序 arrayInt.h arrayInt.cpp main.cpp 对 ...
分类:编程语言   时间:2019-05-12 19:38:15    阅读次数:137
python导入类
导入类的方法: 1.from 模块 import 类名 在主文件中,使用就是:类名 2.import 模块 在主文件中,使用就是:模块.类名 3.导入模块当中所有类 (不推荐) from module_name import * 4.从一个模块当中,导入另一个模块 有时候,需要将类分散到多个模块中, ...
分类:编程语言   时间:2019-04-16 00:54:01    阅读次数:195
ATW eDRX PTW 相关配置
Configurable Battery Saving With this feature, an operator can control the allocated battery saving parameters of the device. The operator can also co ...
分类:其他好文   时间:2019-04-14 12:31:58    阅读次数:240
移动端 - Android客户端性能测试常见指标
rom版本的性能测试 一般关注功耗(不过 rom 版本的功耗测试跟应用的功耗测试会有所差异,当然只是用例设计方面的差异,工具仍然采用安捷伦电源仪进行) 应用的性能测试 包括很多测试项,如启动时间、内存、CPU、GPU、功耗、流量等。 对于启动时间、内存、cpu 一般都使用外部提供的第三方工具来辅助测 ...
分类:移动开发   时间:2019-04-02 00:22:16    阅读次数:290
166条   上一页 1 2 3 4 5 6 ... 17 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!