发布时间:2016-02-19 16:38:29
一、私有继承1.两个类之间的继承关系为私有,编译器一般不会讲派生类对象转换成基类对象2.此部分私有基类继承而来的成员都成为了派生类的私有成员。#include using namespace std;class Person{public:void eat(){cout......【阅读全文】
发布时间:2016-02-19 11:32:06
一、c++静态成员和临时对象#include using namespace std;class human{public:human(){human_num++;}static int human_num;~human(){human_num--;print();}void print(){cout<<"human num is:"<<human_num<<endl;}};int human::human_num = 0;human f1 (human x){x.print();return x;}int mai.........【阅读全文】
发布时间:2016-02-17 19:56:35
一、构造函数可以被重载,因为构造函数可以有很多歌,而且可以带参数 析构函数不行,第一不能带参数,第二只有一个二、构造函数内调用构造函数只是在栈上生成一个临时对象,对自己本身毫无影响三、普通构造函数能够被隐式调用,而explicit构造函数只能被显示调用class Test1{public:Test1(int n).........【阅读全文】
发布时间:2016-02-17 18:33:57
一、class成员默认私有,struct成员默认公有#include using namespace std;class CPoint{int x;void print(){}public:CPoint(int x,int y){this->x = x;this->y = y;}void print1(){}};struct Spoint{int x;int y;void printf(){}Spoint(int x, int y){this->x = x;this->y = y;.........【阅读全文】