084-C++

来源:互联网 发布:js jsonarray add 编辑:程序博客网 时间:2024/06/06 10:42

C++数据封装

#include <iostream>using namespace std; class Adder{   public:      // 构造函数      Adder(int i = 0)      {        total = i;      }      // 对外的接口      void addNum(int number)      {          total += number;      }      // 对外的接口      int getTotal()      {          return total;      };   private:      // 对外隐藏的数据      int total;};int main( ){   Adder a;      a.addNum(10);   a.addNum(20);   a.addNum(30);    cout << "Total " << a.getTotal() <<endl;   return 0;}