自定义博客皮肤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)
  • 资源 (2)
  • 收藏
  • 关注

原创 C++虚继承

#include #include class Pet { public:     Pet(std::string theName);     virtual void eat(); protected:     std::string name; }; class Cat : public Pet { public:     Cat(std::string

2015-06-29 11:17:14 344

原创 C++多重继承

#include #include class Person { public:     Person(std::string theName);     void introduce(); protected:     std::string name; }; class Teacher:public Person { public:     Teacher(s

2015-06-29 11:13:24 334

原创 C++ 中的友元friend

#include #include class Lovers { public:     Lovers(std::string theName);     void kiss(Lovers *lovers);     void ask(Lovers *lovers, std::string something); protected:     std::string na

2015-06-27 20:13:25 395

原创 C++ 中的iostringstream的使用

#include #include #include #include #include struct personInfo{     std::string name;     std::vector phone; }; int main() {     std::vector personInfoList;     std::ifstream cin("1

2015-06-26 17:22:37 793

2014最新软考大纲

2014年最新出的软件设计师考试大纲!包含考试内容,考试重点,难点的勾画!

2014-10-07

乘公交、看奥运

数学建模,全国优秀论文,对于数学建模中对论文的写作有指导作用。

2012-01-16

空空如也

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

TA关注的人

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