自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (1)
  • 收藏
  • 关注

原创 C++继承机制

1. 构造函数。 The base-class object is constructed first. 1. 首先构造基类对象。 The derived-class constructor should pass base-class information to a base-class constructor via a member initializer list. 2. 继承类

2015-11-17 20:19:37 316

原创 默认构造函数

Default Constructor: C++ Compiler generates automatically if you don't define one. 以class Time为例 : 系统自生成默认构造函数为: Time::Time() {} // implicit and does nothing 定义一个类变量时: Time curTime; // 类没有初始化 自定

2015-11-11 20:05:54 380

原创 运算符重载与友元

Keep in mind that you must choose one or the other form when defining a given operator,but not both. 加法:operator+ 以class Time为例: T1 = T2 + T3; --> T1 = T2.operator+(T3); // member function --> T1

2015-11-10 20:42:34 286

Python Tutorial 2.7.6[EN release]

非常全面的PYTHON资源,你值得拥有。

2015-05-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除