⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vehicle.h

📁 Since the field of object oriented programming is probably new to you, you will find that there is a
💻 H
字号:
                                 // Chapter 7 - Program 1 - VEHICLE.H
// vehicle header file

#ifndef VEHICLE_H
#define VEHICLE_H

class vehicle 
{
protected:
   int wheels;
   float weight;
public:
   void initialize(int in_wheels, float in_weight);
   int get_wheels(void);
   float get_weight(void);
   float wheel_loading(void);
};

#endif



// Result of execution
//
// (This file cannot be executed)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -