c++ 基础代码使用

C++

保留词

修饰符:signed unsigned long short
限定符
const 描述的对象在执行时不可被改变;
volatile 描述的对象为编译器不可优化的变量;
restrict 限定修饰的指针为唯一一种访问指向对象的方式;

C++面向对象

继承

#include <iostream>
using namespace std;

class Shape { // 基类 Shape
   public:
      void setWidth(int w) { width = w; }
      void setHeight(int h) { height = h; }
   protected:
      int width;
      int height;
};
 
class PaintCost { // 基类 PaintCost
   public:
      int getCost(int area){ return area * 70; }
};
 
// 派生类
class Rectangle: public Shape, public PaintCost {
   public:
      int getArea() { return (width * height); }
};
 
int main(void)
{
   Rectangle Rect;
   int area;
   Rect.setWidth(5);
   Rect.setHeight(7);
 
   area = Rect.getArea();
   // 输出对象的面积
   cout << "Total area: " << Rect.getArea() << endl;
   // 输出总花费
   cout << "Total paint cost: $" << Rect.getCost(area) << endl;
 
   return 0;
}

重载

函数重载:一个类中,由形式参数区分同名的几个函数;
运算符重载
双目运算符重载(加减乘除模);

#include <iostream>
using namespace std;
 
class Box {
   public:
      double getVolume(void) { return length 
  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值