C++类的学习1(二)

简介: 的定义一般包括两部分,一是类的属性,二是他所拥有的方法。类的实例化是指给类的加载并初始化过程,比如一个people类,我们具体到每一个人就是类的实例化,此外一个类可以在此类上进行扩展。比如people类,我们分为 外国people 和 中国people,那么people叫做基类,外国people叫做派生类或子类


想知道构造函数怎样工作的吗?


我来告诉你


首先我们来看定义未知数的顺序;

我们先定义height,在定义weight,那么构造函数是按照先初始化height在初始化weight的顺序构造的,并不是按照构造函数的顺序,举个例子:

#include <iostream>
using namespace std;
class people{
  public:
    people(int x);
    void a();
    ~people();
  private:
    string name="小明";
    int height;
    int weight; 
}; 
people::people(int x=9):height(x),weight(height){}   
//先初始化height,再将height赋值给weight    
people::~people(){
}
void people::a(){
      cout<<name<<' '<<height<<' '<<weight;
    }
int main(){
  people cao(170);
  cao.a();
  return 0;
} 

#include <iostream>
using namespace std;
class people{
  public:
    people(int x);
    void a();
    ~people();
  private:
    string name="小明";
    int height;
    int weight; 
}; 
people::people(int x=9):height(weight),weight(x){}  
//先初始化height,但height依赖于weight,由于weight没有初始化,所以出现错误;
people::~people(){
}
void people::a(){
      cout<<name<<' '<<height<<' '<<weight;
    }
int main(){
  people cao(170);
  cao.a();
  return 0;
} 

 


 3.类的继承


子承父业吗,子类继承父类,分为三种继承方式;


(1)公共继承:父类的公共属性在子类还是公共属性,保护属性还是保护属性,私有属性子类访                              问不到


(2)保护继承:父类的公共属性和保护属性在子类中都变为保护属性;私有还是访问不到


(3)私有继承:父类的公共属性在子类变为保护属性,父类的保护属性变为私有属性,私有访问                             不到;


举例说明:


(1)公共继承:

#include <iostream>
using namespace std;
class father{
  public:
    string a="father 公共";
  protected:
    string b="father 保护";
  private:
    string c="father 私有";
};
class son:public father{
  public:
//    string a="son 公共";
//    string b="son 保护";
//    c="son 私有"; 
  void dain(){
    cout<<a<<endl<<b<<endl<<endl;
//    cout<<c;  //报错 
  }
};
int main(){
  son linyuan;
  linyuan.dain();
  cout<<linyuan.a<<endl; 
//  cout<<linyuan.b<<endl;    //报错 
  return 0;
}

(2)保护继承

#include <iostream>
using namespace std;
class father{
  public:
    string a="father 公共";
  protected:
    string b="father 保护";
  private:
    string c="father 私有";
};
class son:protected father{
  public:
//    string a="son 公共";
//    string b="son 保护";
//    c="son 私有"; 
  void dain(){
    cout<<a<<endl<<b<<endl<<endl;
//    cout<<c;  //报错 
  }
};
int main(){
  son linyuan;
  linyuan.dain();
//  cout<<linyuan.a<<endl; 
//  cout<<linyuan.b<<endl;    //报错 
  return 0;
}


(3)私有继承


#include <iostream>
using namespace std;
class father{
  public:
    string a="father 公共";
  protected:
    string b="father 保护";
  private:
    string c="father 私有";
};
class son:private father{
  public:
//    string a="son 公共";
//    string b="son 保护";
//    c="son 私有"; 
  void dain(){
    cout<<a<<endl<<b<<endl<<endl;
//    cout<<c;  //报错 
  }
};
int main(){
  son linyuan;
  linyuan.dain();
//  cout<<linyuan.a<<endl; 
//  cout<<linyuan.b<<endl;    //报错 
  return 0;
}


那么继承方式讲完了,其实C++类还支持同时继承多个类例如;

#include <iostream>
using namespace std;
class father1{
  public:
    string name1;
    father1(){
      name1="小刚"; 
    }
};
class father2{
  public:
    string name1;
    father2(){
      name1="小明"; 
    }
};
class son:public father1,public father2{
  public:
    string name1;
    son(){
      name1="木木渊"; 
    }
}; 
int main(){
  son a;
  cout<<a.name1<<endl;
  cout<<a.father1::name1<<endl;
  cout<<a.father2::name1;
} 

派生类和父类继承元素重名时可以通过命名空间来分别 ,函数也是如此实现多继承;


接下来我们看一下析构函数的情况;

#include <iostream>
using namespace std;
class father1{
  public:
    string name1;
    father1(){
      cout<<"father1 构造函数"<<endl; 
      name1="小刚"; 
    }
    ~father1(){
      cout<<"father1 析构函数"<<endl; 
    }
};
class father2{
  public:
    string name1;
    father2(){
      name1="小明"; 
      cout<<"father2 构造函数"<<endl; 
    }
    ~father2(){
      cout<<"father2 析构函数"<<endl; 
    }
};
class son:public father1,public father2{
  public:
    string name1;
    son(){
      name1="木木渊"; 
      cout<<"son 构造函数"<<endl;
    }
    ~son(){
      cout<<"son 析构函数"<<endl; 
    }
}; 
int main(){
  son a;
  cout<<"main 要结束了"<<endl; 
} 

很明显son先继承father1,在继承father2,因此构造函数先是father1,再father2,最后son,析构函数正好相反;

相关文章
|
1天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
14 2
|
7天前
|
存储 编译器 C++
【c++】类和对象(下)(取地址运算符重载、深究构造函数、类型转换、static修饰成员、友元、内部类、匿名对象)
本文介绍了C++中类和对象的高级特性,包括取地址运算符重载、构造函数的初始化列表、类型转换、static修饰成员、友元、内部类及匿名对象等内容。文章详细解释了每个概念的使用方法和注意事项,帮助读者深入了解C++面向对象编程的核心机制。
33 5
|
14天前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
45 4
|
15天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
43 4
|
29天前
|
编译器 C语言 C++
配置C++的学习环境
【10月更文挑战第18天】如果想要学习C++语言,那就需要配置必要的环境和相关的软件,才可以帮助自己更好的掌握语法知识。 一、本地环境设置 如果您想要设置 C++ 语言环境,您需要确保电脑上有以下两款可用的软件,文本编辑器和 C++ 编译器。 二、文本编辑器 通过编辑器创建的文件通常称为源文件,源文件包含程序源代码。 C++ 程序的源文件通常使用扩展名 .cpp、.cp 或 .c。 在开始编程之前,请确保您有一个文本编辑器,且有足够的经验来编写一个计算机程序,然后把它保存在一个文件中,编译并执行它。 Visual Studio Code:虽然它是一个通用的文本编辑器,但它有很多插
|
1月前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
28 4
|
1月前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
25 4
|
1月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
22 1
|
1月前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
1月前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)