第六站:C++面向对象

面向对象的第一概念:类

类的构成:

“类”,是一种特殊的“数据类型”,不是一个具体的数据。

类的设计:

创建一个类:

class Human {
public://公有的,对外的void eat();//方法,成员函数void sleep();void play();void work();string getName();//获取对内的数据int getAge();int getSalary();
private://对内的,私有的string name;int age;int salary;
};

成员函数及实现

/*
void eat();//方法,成员函数
void sleep();
void play();
void work();
*/void Human::eat() {cout << "我正在吃饭!" << endl;
}
void Human::sleep() {cout << "准备去睡觉吧!" << endl;
}
void Human::play() {cout << "准备玩啥呢!" << endl;
}
void Human::work() {cout << "准备工作" << endl;
}

 成员数据通过函数调用

实现封装,数据获取get()

/*
成员数据
private://对内的,私有的string name;int age;int salary;*/
/*
调用成员数据的函数
string getName();//获取对内的数据
int getAge();
int getSalary();
*/
//实现对成员数据的获取
string Human::getName() {return name;
}
int Human::getAge() {return age;
}
int Human::getSalary() {return salary;
}

成员数据单个设置set()

/*
void setName(string name);//设置对内的数据
void setAge(int age);
void setSalary(int salary);
*/
//this是一个特殊的指针,指向这个对象本身
void Human::setName(string name1) {this->name = name1;
}
void Human::setAge(int age1) {this->age = age1;
}
void Human::setSalary(int salary1) {this->salary = salary1;
}

对象:

一个特定"类"的具体实例 

Human h1;//h1就是Human这个类的一个对象,一个对象是一个特殊的变量,有丰富的功能和用法,可以通过对象去调用类的成员函数

特点:

1. 使用 . ”来访问类内的方法的调用
2. 调用方法时,方法名后需要带一对圆括号 ()
3. 通过对象,只能调用这个对象的 public 方法

具体使用方法:

int main(void) {Human h1;//通过Human类创建一个对象h1.eat();h1.play();h1.sleep();h1.work();//设置成员数据h1.setName("张三");//通过getName()来获取成员数据cout << h1.getName() << endl;//h1.age//直接访问成员数据是无法通过编译的return 0;
}

成员数据的初始化:构造函数(自动调用)

作用:

创建一个新的对象 时, 自动调用的函数 ,用来进行“初始化”工作,对这个 对象内部的数据成员进行初始化

特点:

1: 自动调用 (在创建新对象时,自动调用)
2: 构造函数的函数名,和类名相同
3:构造函数 没有 返回类型
4:可以有多个构造函数(即 函数重载形式 )(大致常用的有四种)

构造函数的种类

每一种构造函数都只有一个

默认构造函数

没有参数的构造函数,称为默认构造函数

合成的默认构造函数

在创建一个对象的时候,(1:当我们没写默认的构造函数时,编译器会自动创建一个"合成的默认构造函数")--->这个值都是随机的,并不准确

仅当数据成员全部使用了“类内初始值”,才宜使用“合成的默认构造函数”

int age = 18;//设置类内初始值(仅C11以上才支持)

//通过getAge()来获取成员数据
cout << h1.getAge() << endl;//使用类内初始值(仅C11以上才支持)
//通过getName()来获取成员数据
cout << h1.getSalary() << endl;//没有使用类内初始值

手动定义默认构造函数

防止编译器自动编译一个合成的默认构造函数

Human();//手动定义默认构造函数

//手动定义的默认构造函数
Human::Human(){
    name = "张三";
    age = 23;
    salary = 25000;
}

自定义带参构造函数(会覆盖类内初始值)

与自定义默认构造函数不同的是,(默认的是在初始化的时候值都是固定的,带参的可以根据不同对象设置不同的初始化值)

this是一个特殊的指针,指向这个对象本身

/*
类内
//手动定义带参的(重载)构造函数
Human(string name,int age,int salary);
*/
/*
类外
//自定义重载构造函数
Human::Human(string name, int age, int salary){this->age = age;//this是一个特殊的指针this->name = name;this->salary = salary;
}
*/
int main(void) {//自定义一个带参的构造函数Human h1("张三",24,25000);//通过Human类创建一个对象h1.eat();h1.play();h1.sleep();h1.work();//通过getName()来获取成员数据cout << h1.getName() << endl;//通过getAge()来获取成员数据cout << h1.getAge() << endl;//通过getName()来获取成员数据cout << h1.getSalary() << endl;//h1.age//直接访问成员数据是无法通过编译的return 0;
}

 

拷贝构造函数

合成的拷贝构造函数(一般有问题)

Human h1("张三",24,25000);//通过Human类创建一个对象
Human h2 = h1;//第一种形式:在没有自定义拷贝构造函数时,编译器会默认调用"合成拷贝构造函数"一般有问题
Human h3(h2);//第二种形式//通过getName()来获取成员数据
cout << h1.getName() << endl;
cout << h2.getName() << endl;
cout << h3.getName() << endl;
 那合成拷贝构造函数的问题

当数据成员是个指针的时候就会出现"浅拷贝"或者"位拷贝"直接复制拷贝对象的所有数据值

#include <iostream>
#include <string>using namespace std;
#define size 16
class Human {
public://公有的,对外的void eat();//方法,成员函数void sleep();void play();void work();void descript();//自定义的默认构造函数Human();//手动定义带参的(重载)构造函数Human(string name,int age,int salary);//手动定义拷贝构造函数//Human(const Human& other);void setName(string name);//设置对内的数据void setAge(int age);void setSalary(int salary);void setAddr(char* addr);string getName();//获取对内的数据int getAge();int getSalary();
private://对内的,私有的string name;int age;//设置类内初始值int salary;char* addr;
};
//成员描述信息
void Human::descript()
{cout << "name: " << getName()<< "age: " << getAge()<< "salary: " << getSalary()<<"addr: "<<addr <<endl;//可以直接访问,只是不安全
}
string Human::getName() {return name;
}
int Human::getAge() {return age;
}
int Human::getSalary() {return salary;
}
//手动定义的默认构造函数
Human::Human(){cout << "手动定义的默认构造函数" << endl;name = "张三";age = 23;salary = 25000;addr = new char[32];strcpy_s(addr, size, "Amecrican");
}
//自定义重载构造函数
Human::Human(string name, int age, int salary){cout << "调用自定义的拷贝构造函数" << endl;this->age = age;this->name = name;this->salary = salary;addr = new char[32];strcpy_s(addr,size, "China");
}
//相当于 Human h2 = h1;    //const Human &other = h1;
//Human::Human(const Human& other){
//	  cout << "调用拷贝构造函数" << endl;
//	  this->age = other.age;
//	  this->name = other.name;
//	  this->salary = other.salary;
//}void Human::setAddr(char* addr)
{if (!addr){return;}strcpy_s(this->addr, size, addr);
}
int main(void) {Human h;//自定义一个带参的构造函数Human h1("张三",24,25000);//通过Human类创建一个对象Human h2 = h1;//第一种形式:在没有自定义拷贝构造函数时,编译器会默认调用"合成拷贝构造函数"一般有问题Human h3(h2);//第二种形式h.descript();h1.descript();h2.descript();h3.descript();//当这里使用setAddr改变h1内的地址值cout << "当这里使用setAddr改变h1内的地址值" << endl;h1.setAddr("美国");h.descript();h1.descript();h2.descript();h3.descript();return 0;
}
自定义拷贝构造函数(const的引用类型)

 

#include <iostream>
#include <string>using namespace std;
#define size 16
class Human {
public://公有的,对外的void eat();//方法,成员函数void sleep();void play();void work();void descript();//自定义的默认构造函数Human();//手动定义带参的(重载)构造函数Human(string name,int age,int salary);//手动定义拷贝构造函数Human(const Human& other);void setName(string name);//设置对内的数据void setAge(int age);void setSalary(int salary);void setAddr(char* addr);string getName();//获取对内的数据int getAge();int getSalary();
private://对内的,私有的string name;int age;//设置类内初始值int salary;char* addr;
};
//成员描述信息
void Human::descript()
{cout << "name: " << getName()<< "age: " << getAge()<< "salary: " << getSalary()<<"addr: "<<addr <<endl;//可以直接访问,只是不安全
}
string Human::getName() {return name;
}
int Human::getAge() {return age;
}
int Human::getSalary() {return salary;
}
//手动定义的默认构造函数
Human::Human(){cout << "手动定义的默认构造函数" << endl;name = "张三";age = 23;salary = 25000;addr = new char[32];strcpy_s(addr, size, "Amecrican");
}
//自定义重载构造函数
Human::Human(string name, int age, int salary){cout << "调用自定义的拷贝构造函数" << endl;this->age = age;this->name = name;this->salary = salary;addr = new char[32];strcpy_s(addr,size, "China");
}
//相当于 Human h2 = h1;    //const Human &other = h1;
Human::Human(const Human& other){cout << "调用拷贝构造函数" << endl;this->age = other.age;this->name = other.name;this->salary = other.salary;//为addr分配一块独立的内存空间,不进行浅拷贝addr = new char[32];strcpy_s(addr, size, other.addr);
}
void Human::setAddr(char* addr)
{if (!addr){return;}strcpy_s(this->addr, size, addr);
}
int main(void) {Human h;//自定义一个带参的构造函数Human h1("张三",24,25000);//通过Human类创建一个对象Human h2 = h1;//第一种形式:在没有自定义拷贝构造函数时,编译器会默认调用"合成拷贝构造函数"一般有问题Human h3(h2);//第二种形式h.descript();h1.descript();h2.descript();h3.descript();//当这里使用setAddr改变h1内的地址值cout << "当这里使用setAddr改变h1内的地址值" << endl;h1.setAddr("美国");h.descript();h1.descript();h2.descript();h3.descript();return 0;
}
调用时机
 1:拷贝构造函数作为函数的参数,而非引用类型

如果参数是引用类型的话,函数内是可以直接修改,引用对象的数据值的,但是这种方式是不会创建新的对象的可以节省空间(如果设置不行值被修改,可以将成员函数和引用参数类型都定义为const类型,那么引用的这个对象就无法修改非const的值)禁止值被修改,就和拷贝构造函数一样了)

非引用的话,修改值,那值也是也是新的对象的

/*
//拷贝构造函数作为函数的参数,而非引用类型
//相当于就是Human h2 = h1;
void type1(Human h2) {cout << "拷贝构造函数作为函数的参数,而非引用类型" << endl;cout << "name: " << h2.getName()<< "age: " << h2.getAge()<< "salary: " << h2.getSalary()<< "addr: " << h2.getAddr() << endl;
}*/
/*
//如果时引用的话,是不会创建新的对象
void type2(Human &h2) {//相当于别名cout << "拷贝构造函数作为函数的参数,是引用类型" << endl;cout << "name: " << h2.getName()<< "age: " << h2.getAge()<< "salary: " << h2.getSalary()<< "addr: " << h2.getAddr() << endl;
}
*/int main(void) {Human h;//自定义一个带参的构造函数Human h1("张三",24,25000);//通过Human类创建一个对象//调用拷贝构造函数时机1:拷贝构造函数作为函数的参数,而非引用类型//type1(h1);type2(h1);return 0;
}
 2:函数的返回类型是类,而不是引用类型

 

#include <iostream>
#include <string>using namespace std;
#define size 16
class Human {
public://公有的,对外的void eat();//方法,成员函数void sleep();void play();void work();void descript();//自定义的默认构造函数Human();//手动定义带参的(重载)构造函数Human(string name,int age,int salary);//手动定义拷贝构造函数Human(const Human& other);void setName(string name);//设置对内的数据void setAge(int age);void setSalary(int salary);void setAddr(char* addr);string getName()const;//获取对内的数据int getAge()const;int getSalary()const;char* getAddr() const;
private://对内的,私有的string name;int age;//设置类内初始值int salary;char* addr;
};
//成员描述信息
void Human::descript()
{cout << "name: " << getName()<< "age: " << getAge()<< "salary: " << getSalary()<<"addr: "<<addr <<endl;//可以直接访问,只是不安全
}
string Human::getName() const {return name;
}
int Human::getAge() const {return age;
}
int Human::getSalary() const {return salary;
}
char* Human::getAddr() const
{return addr;
}
//手动定义的默认构造函数
Human::Human(){cout << "手动定义的默认构造函数" << endl;name = "张三";age = 23;salary = 25000;addr = new char[32];strcpy_s(addr, size, "Amecrican");
}
//自定义重载构造函数
Human::Human(string name, int age, int salary){cout << "调用自定义的带参构造函数" << endl;this->age = age;this->name = name;this->salary = salary;addr = new char[32];strcpy_s(addr,size, "China");
}
//相当于 Human h2 = h1;    //const Human &other = h1;
Human::Human(const Human& other){cout << "调用拷贝构造函数" << endl;this->age = other.age;this->name = other.name;this->salary = other.salary;//为addr分配一块独立的内存空间,不进行浅拷贝addr = new char[32];strcpy_s(addr, size, other.addr);//设置值为深拷贝
}
//拷贝构造函数作为函数的参数,而非引用类型
void type1(Human h2) {cout << "拷贝构造函数作为函数的参数,而非引用类型" << endl;cout << "name: " << h2.getName()<< "age: " << h2.getAge()<< "salary: " << h2.getSalary()<< "addr: " << h2.getAddr() << endl;
}
//函数的返回类型是类,参数是对象,而非引用类型
//这个函数会返回一个临时的对象,这个对象会调用拷贝构造函数,加上参数的两个,这里一共会调用三次拷贝构造函数
//这里可以将参数设置为引用类型,避免浪费资源(其他成员函数最好设置为const的类型,避免值无意间自己给修改了)
//返回的类型也可以设置为引用类型,避免创建临时对象
const Human& getBetterMan(const Human &h1, const Human &h2) {if (h1.getSalary() > h2.getSalary()) {return h1;}else {return h2;}
}
void Human::setName(string name1) {this->name = name1;
}
void Human::setAge(int age1) {this->age = age1;
}
void Human::setSalary(int salary1) {this->salary = salary1;
}
void Human::setAddr(char* addr)
{if (!addr){return;}strcpy_s(this->addr, size, addr);
}
int main(void) {//自定义一个带参的构造函数Human h1("张三",24,25000);//通过Human类创建一个对象Human h2("王五", 24, 26000);//调用拷贝构造函数时机1:拷贝构造函数作为函数的参数,而非引用类型getBetterMan(h1,h2);//这个函数会返回一个临时的对象,这个对象会调用拷贝构造函数return 0;
}
 3:对象是数组:

 Human men[] = { h1, h2, h3 }; //调用 3 次拷贝构造函数 

 

赋值构造函数

赋值构造函数和拷贝构造函数的区别

拷贝构造函数是在创建对象的时候,将其他对象拷贝给他,

Human h1 = h2;//这种就是拷贝构造函数

但是当将已经存在的对象进行赋值的就不是拷贝构造函数了,而是调用的赋值构造函数

Human h1,h2;

h1 = h2;//这种就是赋值构造函数

合成的赋值构造函数(浅拷贝)

和拷贝构造函数有点类似

int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000), h2;h2 = h1;h1.descript();h2.descript(); cout << "将h1地址的值进行修改后" << endl;h1.setAddr("江西");h1.descript();h2.descript();return 0;
}
自定义赋值构造函数

/*
类内//手动定义赋值构造函数,// 运算符重载"operator ="Human& operator= (const Human & other1);*/
/*
//类外
//赋值构造函数,&Human等同于h1
//const型的   h2
Human &Human::operator= (const Human& other1) {//防止对象给自己赋值if (this == &other1) {//如果对象给自己赋值,就返回对象本身的指针return *this;}//当执行h2 = h1时 //就相当于调用h2.operator =(h1);this->name = other1.name;this->age = other1.age;this->salary = other1.salary;//如果有必要可以先释放原本对象的资源//看情况,因为对象生成的时候本身就有一块内存/*delete addr;addr = new char[64];*/strcpy_s(this->addr, size, other1.addr);//深拷贝//返回对象本身this的引用*this,以方便做链式处理,h3=h2=h1;return *this;//return this 这种只是返回对象的指针,这个对象如果继续给下一个对象赋值的,就是空的
}*/int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000), h2,h3;h3 = h2 = h1;//没有自定义赋值构造函数时,就是"浅拷贝"h1.descript();h2.descript(); h3.descript();cout << "将h1地址的值进行修改后" << endl;h1.setAddr("江西");h1.descript();h2.descript();h3.descript();return 0;
}

析构函数(自动调用)

当对象内部构造函数申请多个内存空间之后,由于这个空间都是在堆空间里,对象消亡之后,堆空间里的内存空间依然存在,又因为在对象内部,使用delete运算符去清空,首先很繁琐,

这时候就要用到析构函数.析构函数是没有参数,没有返回类型的,而且只有一个

构造函数申请了多少空间,就释放多少空间

一个波浪线+类名();:~Human();,可以看出,谁先调用完,谁就先释放

Human::~Human() {//这里加个this,谁来调用就返回这个对象的指针,在其他对象中也加入就可以判断调用的先后顺序cout << "调用析构函数" << this<<endl;delete addr;
}int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000), h2,h3;h3 = h2 = h1;//没有自定义赋值构造函数时,就是"浅拷贝"h1.descript();h2.descript(); h3.descript();cout << "将h1地址的值进行修改后" << endl;h1.setAddr("江西");h1.descript();h2.descript();h3.descript();return 0;
}

 this指针:

是一个特殊的指针,放回这个对象本身,this指针是属于实例对象,不能访问静态方法(不属于某一个实例对象,属于共有的,大众的,由类直接调用)

第一种用法:

void Human::setName(string name1) {this->name = name1;
}
void Human::setAge(int age1) {this->age = age1;
}
void Human::setSalary(int salary1) {this->salary = salary1;
}

 第二三种用法:引用和指针

//this指针的用法两种
const Human* comBetterMan(const Human*);
const Human& comBetterMan1(const Human&);/*
//当返回对象是指针时
const Human *Human::comBetterMan(const Human *other) {if (this->getSalary() >other->getSalary()) {return this;}else {return other;}
}
//当返回对象是引用时
const Human& Human::comBetterMan1(const Human&other) {if (this->getSalary() > other.getSalary()) {return *this;}else {return other;}
}
*/
int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000);Human h2("李四", 40, 50000);cout << "用指针返回的是:" << h1.comBetterMan(&h2) << endl;cout << "用引用返回的是:" << &h1.comBetterMan1(h2) << endl;return 0;
}

类文件的分离

 分为定义(.h的文件中)和实现(.cpp文件中)两个部分和一个主函数(main)文件.cpp

.h中

#pragma once
#include <iostream>
#include <string>
using namespace std;class Human {
public://公有的,对外的void eat();//方法,成员函数void sleep();void play();void work();void descript();//自定义的默认构造函数Human();~Human();//手动定义带参的(重载)构造函数Human(string name, int age, int salary);//手动定义拷贝构造函Human(const Human& other);//手动定义赋值构造函数,// 运算符重载"operator ="Human& operator= (const Human& other1);void setName(string name);//设置对内的数据void setAge(int age);void setSalary(int salary);void setAddr(char* addr);//this指针的用法两种const Human* comBetterMan(const Human*);const Human& comBetterMan1(const Human&);string getName()const;//获取对内的数据int getAge()const;int getSalary()const;char* getAddr() const;
private://对内的,私有的string name;int age;//设置类内初始值int salary;char* addr;
};

实现 .cpp中代码


#include "Human.h"
#define size 16
string Human::getName() const {return name;
}
int Human::getAge() const {return age;
}
int Human::getSalary() const {return salary;
}
char* Human::getAddr() const
{return addr;
}
//手动定义的默认构造函数
Human::Human() {cout << "手动定义的默认构造函数" << this << endl;name = "张三";age = 23;salary = 25000;addr = new char[32];strcpy_s(addr, size, "Amecrican");
}
//自定义重载构造函数
Human::Human(string name, int age, int salary) {cout << "调用自定义的带参构造函数" << this << endl;this->age = age;this->name = name;this->salary = salary;addr = new char[32];strcpy_s(addr, size, "China");
}
//相当于 Human h2 = h1;    //const Human &other = h1;
Human::Human(const Human& other) {cout << "调用拷贝构造函数" << endl;this->age = other.age;this->name = other.name;this->salary = other.salary;//为addr分配一块独立的内存空间,不进行浅拷贝addr = new char[32];strcpy_s(addr, size, other.addr);//设置值为深拷贝
}//如果时引用的话,是不会创建新的对象
//void type2(const Human& h2) {//相当于别名
//	cout << "拷贝构造函数作为函数的参数,是引用类型" << endl;
//	//h2.setAddr("芜湖");//可以修改值,定义为const就不能修改了
//	cout << "name: " << h2.getName()
//		<< "age: " << h2.getAge()
//		<< "salary: " << h2.getSalary()
//		<< "addr: " << h2.getAddr() << endl;
//}
//函数的返回类型是类,而非引用类型,,参数是对象,而非引用类型
//这个函数会返回一个临时的对象,这个对象会调用拷贝构造函数,加上参数的两个,这里一共会调用三次拷贝构造函数
//这里可以将参数设置为引用类型,避免浪费资源(其他成员函数最好设置为const的类型,避免值无意间自己给修改了)
//返回的类型也可以设置为引用类型,避免创建临时对象
const Human& getBetterMan(const Human& h1, const Human& h2) {if (h1.getSalary() > h2.getSalary()) {return h1;}else {return h2;}
}
//赋值构造函数,&Human等同于h1
//const型的   h2
Human& Human::operator= (const Human& other1) {cout << "调用赋值构造函数" << this << endl;//防止对象给自己赋值if (this == &other1) {//如果对象给自己赋值,就返回对象本身的指针return *this;}//当执行h2 = h1时 //就相当于调用h2.operator =(h1);this->name = other1.name;this->age = other1.age;this->salary = other1.salary;//如果有必要可以先释放原本对象的资源//看情况,因为对象生成的时候本身就有一块内存delete addr;addr = new char[64];strcpy_s(this->addr, size, other1.addr);//深拷贝//返回对象本身的引用,以方便做链式处理,h3=h2=h1;return *this;//return this 这种只是返回对象的指针,这个对象如果继续给下一个对象赋值的,就是空的
}
void Human::setName(string name1) {this->name = name1;
}
void Human::setAge(int age1) {this->age = age1;
}
void Human::setSalary(int salary1) {this->salary = salary1;
}
void Human::setAddr(char* addr)
{if (!addr) {return;}strcpy_s(this->addr, size, addr);
}
//当返回对象是指针时
const Human* Human::comBetterMan(const Human* other) {if (this->getSalary() > other->getSalary()) {return this;}else {return other;}}//当返回对象是引用时
const Human& Human::comBetterMan1(const Human& other) {if (this->getSalary() > other.getSalary()) {return *this;}else {return other;}
}
Human::~Human() {//这里加个this,谁来调用就返回这个对象的指针,在其他对象中也加入就可以判断调用的先后顺序cout << "调用析构函数" << this << endl;delete addr;
}

 主函数.cpp

#include <iostream>
#include <string>
#include "Human.h"
using namespace std;
#define size 16
//成员描述信息
void Human::descript() {cout << "name: " << getName()<< "age: " << getAge()<< "salary: " << getSalary()<< "addr: " << addr << endl;//可以直接访问,只是不安全
}//拷贝构造函数作为函数的参数,而非引用类型
void type1(Human h2) {cout << "拷贝构造函数作为函数的参数,而非引用类型" << endl;cout << "name: " << h2.getName()<< "age: " << h2.getAge()<< "salary: " << h2.getSalary()<< "addr: " << h2.getAddr() << endl;
}int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000);Human h2("李四", 40, 50000);cout << "用指针返回的是:" << h1.comBetterMan(&h2) << endl;cout << "用引用返回的是:" << &h1.comBetterMan1(h2) << endl;return 0;
}

static关键字

弥补使用全局变量不方便,破坏程序的封装性,就是用静态

对于非 const 的类静态成员

只能在 类的实现文件中初始化 。所有 成员函数都可读可写
头文件.h
class Human{public:
......
private:
....
static int count;
....
};实现文件.cpp//初始化静态成员
//对于非 const 的类静态成员,只能在类的实现文件中初始化。
int Human::count = 0;

 const 类静态成员

可以在类内设置初始值,也可以在类的实现文件中设置初始值。(但是 不要同时在这两个地方初始化,只能初始化 1 次

类的静态方法:别人可以访问他,但是他不能访问别人

优点:可以节省创建对象来调用成员函数,因为静态的成员函数可以用类来调用
1. 可以直接通过 类来访问【更常用】 ,也可以通过 对象(实例)来访问
        / 直接通过类名来访问静态方法!
        // 用法:类名::静态方法
2. 在类的静态方法中,不能访问普通数据成员和普通成员函数(对象的数据成员和成员函
数)
静态方法中,只能访问静态数据成员
静态方法的实现,不能加 static
#pragma once
......
class Human {
public:
......
static int getCount();
......
};实现文件中
//静态方法的实现,不能加 static
int Human::getCount() {
// 静态方法中,不能访问实例成员(普通的数据成员)
// cout << age;
// 静态方法中,不能访问 this 指针,因为 this 指针是属于实例对象的
// cout << this;
//静态方法中,只能访问静态数据成员
return count;
}//静态方法:别人可以访问他,但是他不能访问别人
void test() {
cout << "总人数: ";
// ??? 没有可用的对象来访问 getCount()
// 直接通过类名来访问静态方法!
// 用法:类名::静态方法
cout << Human::getCount();
}int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000);Human h2("李四", 40, 50000);//可以通过类名访问静态成员方法,也可以通过实例对象cout << Human::getCount() << endl;cout << h1.getCount() << endl;return 0;
}

 所有的成员函数(),都可以访问静态数据成员。

类可以直接访问public静态数据成员(Human::count 非法)但是不能访问私有的静态数据成员

对象可以直接访问静态成员函数

类可以直接访问静态成员函数

在类的静态成员函数(类的静态方法)内部,不能直接访问 this 指针和对象的数据成员!

 const关键字

const成员数据

只能读不能写

初始化:

设置类内初始值,(C11以上版本支持)

const char BloodType = 'B';

使用构造函数的初始化列表:一个冒号+const成员('初始值')

Human::Human(string name, int age, int salary):BloodType('A') 

 如何做到灵活初始化,用带参的构造函数的参数列表里定义一个形参,去表示初始化列表里的值

/*
Human(string name, int age, int salary,string BloodType);
const string BloodType = "B";
*/
实现文件
//在定义的对象的时候就可以灵活的设置初始值了
Human::Human(string name, int age, int salary,string BloodType):BloodType(BloodType) {
}int main(void) {//自定义一个带参的构造函数Human h1("张三", 24, 25000,"AB");Human h2("李四", 40, 50000,"A");h1.descript();h2.descript();return 0;
}

const成员函数

如果一个成员函数内部,不会修改任何数据成员,就把它定义为 const 成员函数。

const方法只能调用const方法,非const可以调用const方法

void descript() const;
//成员描述信息
void Human::descript() const{//这个函数里面就不能修改数据cout << "name: " << getName()<< "age: " << getAge()<< "salary: " << getSalary()<< "addr: " << addr << "bloodType:"<<BloodType << endl;//可以直接访问,只是不安全
}int main(void) {//自定义一个带参的构造函数const Human h1("张三", 24, 25000,"AB");//const对象可以访问const的成员函数Human h2("李四", 40, 50000,"A");//也可以访问const的成员函数h1.descript();h2.descript();return 0;
}

 组合和聚合

组合:类里添加其他类

#pragma once
#include "Cpu.h"
class Computer{
public:Computer();~Computer();
private:Cpu cpu;//Cpu和Computer之间,就是"组合"//Cpu *cpu;使用指针int hardDisk;//硬盘int memory;//内存
};

组合:构造函数初始化值:

调用外类的成员数据之间通过外部类名调用,

   //this->cpu = Cpu(cpuBrand, cpuVersion);

通过初始化列表

   // :cpu(cpuBrand,cpuVersion)//使用初始化列表

    cout << __FUNCTION__ << endl;如果调用这个函数就返回这个函数

使用指针调用外类和使用对象来调用外类效果一样

错误    C2040    “Computer::cpu”:“Cpu *”与“Cpu”的间接寻址级别不同

当报错这个,有可能是写的两种调用方式名字重名

(Cpu.h)Cpu(const char *brand = "intel",const char *version = "i7");Cpu::Cpu(const char *brand, const char *version){this->brand = brand;this->version = version;cout << __FUNCTION__ << endl;//如果调用该函数就返回这个函数
}(Computer.h)
Computer(const char *cpuBrand,const char *cpuVersion,const int hardDisk,const int memory );Computer::Computer(const char* cpuBrand, const char* cpuVersion,const int hardDisk, const int memory):cpu(cpuBrand,cpuVersion)//使用初始化列表
{//调用外类的成员数据之间通过外部类名调用,//this->cpu = Cpu(cpuBrand, cpuVersion);//this->cpu =new Cpu(cpuBrand, cpuVersion);//如果外类是指针this->hardDisk = hardDisk;this->memory = memory;cout << __FUNCTION__ << endl;
}
Computer::~Computer{delete cpu;//如果外类是指针,就需要释放
}主文件#include "Computer.h"
#include <iostream>
void test() {Computer h1("intel","i9",1000,8);
}int main(void) {test();return 0;
}

组合的概念:

一起生成一起消亡,拥有者需要对被拥有者负责,是一种比较强的关系,是整体与部分的关系。

 聚合

聚合不是组成关系,被包含的对象,也可能被其他对象包含。
拥有者,不需要对被拥有的对象的生命周期负责。

 

头文件
class VoiceBox;VoiceBox *vioceBox;//computer和vioceBox之间,就是"聚合"void addBox(VoiceBox *vioceBox1);//创建一个成员函数,不和构造函数放在一起实现文件
void Computer::addBox(VoiceBox* vioceBox1) {this->vioceBox = vioceBox1;
}主文件
#include "Computer.h"
#include <iostream>
#include "VoiceBox.h"
void test(VoiceBox *h2) {Computer h1("intel","i9",1000,8);h1.addBox(h2);
}int main(void) {VoiceBox box;test(&box);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/622284.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Git相关3 —— 命令及添加Gitee的公钥

1.Git相关命令1 -- 工作目录、暂存区、本地仓库、 使用平台有&#xff1a;cmd、Git bash、VSCode window系统修改VSCode默认终端为git bash git init 初始化 --- 新增.git 文件夹 git status 查看 文件/文件夹 状态 git add 需要追踪的文件名/文件夹名 提交到暂存区 git add…

Electron中 主进程(Main Process)与 渲染进程 (Renderer Process) 通信的方式

1. 渲染进程向主进程通信 修改 html 文件内容 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><!-- 解决控制…

Sublime Text4 crack时替换的汇编指令

Sublime Text4 crack时替换的汇编指令 首先请支持正版&#xff0c;这里研究破解的步骤&#xff0c;仅做汇编代码学习。 破解步骤很简单&#xff1a; 打开二进制文件&#xff0c; 搜索 80 78 05 00 0F 94 C1&#xff0c; 替换为 C6 40 05 01 48 85 C9. (源: https://gist.git…

项目成本管理

4过程&#xff1a; 规划成本管理&#xff0c;估算成本&#xff0c;制定预算&#xff0c;控制成本 估算和预算的区别&#xff1a; 估算时准备向上级拿钱&#xff0c;通常是数值&#xff0c;项目团队做&#xff0c; 预算是拿到钱之后怎么花&#xff0c;通常是S曲线&#xff0c…

AI-数学-高中-4.函数表达式特性-要变一起变

原作者视频&#xff1a;函数】1引导课&#xff1a;高中为什么用f(x)_哔哩哔哩_bilibili 1.什么是函数&#xff1a;给定任意一个x&#xff0c;都有唯一确定的y与之对应&#xff0c;这种x与y的关系就叫函数&#xff0c;类似一个加工厂。 判断图像是否是函数&#xff0c;用竖直线…

如何用MetaGPT帮你写一个贪吃蛇的小游戏项目

如何用MetaGPT帮你写一个贪吃蛇的小游戏项目 MetaGPT是基于大型语言模型(LLMs)的多智能体写作框架&#xff0c;目前在Github开源&#xff0c;其Start数量也是比较高的&#xff0c;是一款非常不错的开源框架。 下面将带你进入MetaGPT的大门&#xff0c;开启MetaGPT的体验之旅。…

Flutter开发进阶之并发操作数据库

Flutter开发进阶之并发操作数据库 尽管 Flutter 本身不包含任何数据库功能&#xff0c;但可以使用各种第三方库和插件来在 Flutter 应用程序中实现数据库功能&#xff1b; 以下将使用sqflite作为例子&#xff0c;sqflite允许在 Flutter 应用程序中执行 SQL 查询&#xff0c;创…

基于深度学习的多类别电表读数识别方案详解

基于深度学习的多类别电表读数识别方案详解 多类别电表读数识别方案详解项目背景项目难点最终项目方案系列项目全集&#xff1a; 安装说明环境要求 数据集简介数据标注模型选型明确目标&#xff0c;开始下一步的操作 检测模型训练模型评估与推理番外篇&#xff1a;基于目标检测…

vue3移动端适配

将vue3项目中的 px 单位&#xff0c;自动转换为rem 单位 可以看到这里会根据页面缩小放大变化 需要安装两个插件&#xff0c;看步骤 amfe-flexible --- 默认指向2.2.1版本 npm i -S amfe-flexiblepostcss-pxtorem --- 默认指向6.0.0版本 --save-dev 参数会把依赖包的版本信…

机器学习---lightGBM

1. lightGBM演进过程 AdaBoost是⼀种提升树的方法&#xff0c;和三个臭皮匠&#xff0c;赛过诸葛亮的道理⼀样。 AdaBoost两个问题&#xff1a; (1) 如何改变训练数据的权重或概率分布提高前⼀轮被弱分类器错误分类的样本的权重&#xff0c;降低前⼀ 轮被分对的权重 (2) 如何…

vue3、vue2文件导入事件

一、vue3写法 1、html部分 <el-buttontype"info"plainicon"Upload"click"handleImport"v-hasPermi"[system:user:import]">导入</el-button><!-- 导入对话框 --><el-dialog :title"upload.title" v-…

mysql进阶-索引基础

目录 1. 概念-索引是什么&#xff1f; 2. 索引的数据结构(索引模型) 2.1 二分查找&#xff1a; 2.2 二叉查找树&#xff08;BST Binary Search Tree&#xff09;&#xff1a; 2.3 平衡二叉树(AVL Tree Balanced binary search trees) 2.4 多路平衡查找树(B Tree Balanced…

推荐一款通过ssh连接linux服务的开源工具WindTerm

文章目录 前言WindTerm介绍WindTerm使用主密码和锁屏总结 前言 工作一入门便是游戏服务器开发&#xff0c;所以常常有连接Linux服务器的需求&#xff0c;之前用的最多的是Xshell&#xff0c;最近这个软件个人版只能免费使用一个月了&#xff0c;超过时间会提示更新无法正常使用…

C++学习笔记——输入、输出和文件

目录 一、标准输入输出 2.1下面是它们的基本用法 解释 二、格式化输入输出 2.2下面是一个示例 解释 三、文件读写 3.3下面是一个文件读写的示例 解释 四、异常处理和错误检测 4.1下面是一个示例 解释 五、一个实例代码 5.1如何读取 CSV 文件&#xff0c;并计算每…

【数据结构】交换排序

插入排序链接。 这篇文章讲解交换排序的两种排序&#xff1a;冒泡排序与快速排序。 目录 冒泡排序&#xff1a;完整代码&#xff1a; 快速排序&#xff1a;单趟排序&#xff1a;hoare&#xff1a;挖坑&#xff1a;前后指针&#xff1a; 完整代码&#xff08;3种方式&#xff0…

3 - AOP

1. 快速入门 1.1 基本说明 AOP(aspect oriented programming) &#xff0c;面向切面编程 切面类中声明通知方法&#xff1a; 前置通知&#xff1a;Before返回通知&#xff1a;AfterReturning异常通知&#xff1a;AfterThrowing后置通知&#xff1a;After环绕通知&#xff1…

2、Redis持久化、主从与哨兵:构建强大而稳定的数据生态

Redis作为一款高性能的内存数据库&#xff0c;其在持久化、主从复制和哨兵系统方面的支持使其在大规模应用和高可用性场景中脱颖而出。本文将深入探讨Redis的持久化机制、主从复制以及哨兵系统&#xff0c;为构建强大而稳定的数据生态揭示关键技术。 持久化&#xff1a;数据的…

二进制与十六进制,二进制与八进制之间的相互转换技巧

目录 1.二进制转换为八进制 2.八进制转换为二进制 3.二进制转换为十六进制 4.十六进制转换为二进制 1.二进制转换为八进制 转换为8进制 第一步&#xff1a;以小数点为分界线&#xff0c;整数部分自右向左&#xff0c;小数部分自左向右每3位取成1位&#xff1a; 整数部分…

【python入门】day28:记录用户登录日志

演示 代码 #-*- coding:utf-8 -*- print(记录用户登录日志----------------------------) import time def show_info():print(输入提示数字,执行相应操作:0退出,1查看登录日志) def write_logininfo(username):#----------记录日志with open(log.txt,a,encodingutf-8)as file…

如何高效阅读Linux的man page

有时候需要在man page中查某个命令的用法&#xff0c;我们一般会使用man command的方式来查询&#xff0c;例如man vmstat.但是对于一些bash内置的命令&#xff0c;如alias,如果使用man alias会打开General Commands Manual ,如下图 可以看到&#xff0c;内置命令很多&#xff…