自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 指针与数组

/* * pointArray.cpp * * Created on: 2016年7月21日 * Author: zroad */ #include<iostream> #include<string> using namespace std;//数组初始化1 string b[4] = {"a", "b", "c", "d"};//数组初始化2 /* * 未初始化数据规则:

2016-07-21 22:27:27 260

原创 指针变量

/* * pointDemo.cpp * * Created on: 2016年7月20日 * Author: zroad */ #include<iostream> using namespace std;void pointVar() { //变量j若未初始化,系统将随即给该变量赋值 int i = 15, j, *p, *q; cout << "i=

2016-07-20 23:15:55 284

原创 类继承、虚继承

/* * inheritClass.cpp * * Created on: 2016年7月18日 * Author: zroad */ #include<iostream> #include<cstring> using namespace std;class BaseClass {public: BaseClass() {} void f(char *s = "

2016-07-18 22:09:38 322

原创 c++类实例化的两种方式

/* * HelloWorld.cpp * * Created on: 2016年7月13日 * Author: zroad */#include<iostream> #include<cstring> #include<string> using namespace std;class C { public: C(string s = "", int i = 0, d

2016-07-16 22:57:40 20409 1

空空如也

空空如也

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

TA关注的人

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