第六站:C++面向对象关键字解释说明

news2025/1/24 8:53:52

  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;
}

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

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

相关文章

张载为往圣继绝学,唯一的错是不够强大

“自古雄才多磨难&#xff0c;从来纨绔少伟男。” 张载&#xff0c;人称“横渠先生”。他在横渠镇&#xff0c;授徒讲学&#xff0c;恢复古礼&#xff0c;试验井田&#xff0c;写书《正蒙》。张载讲学关中&#xff0c;弟子多为关中人&#xff0c;其学派被称作关学。 张载自学…

开源知识库zyplayer-doc部署指南

1.前置条件 docker已经安装 mysql已经安装且数据库zyplayer-doc存在 服务器ip:192.168.168.99/ 数据库账户:root,密码:123456 2.拉取镜像 docker pull zyplayer/zyplayer-doc:latest 3.启动 docker run -d \--restart unless-stopped \--name zyplayer-doc \-p 8083:8083 …

Docker安装Redis详细步骤

1、创建安装目录 mkdir -p /usr/local/docker/redis-docker 2、确定安装的版本 确定对应的版本&#xff0c;在步骤3中会用到&#xff1a; https://github.com/redis/redis/branches 3、配置docker-compose.yml 内容如下&#xff1a; version: 3 services:redis:image: r…

C语言经典算法之希尔排序算法

目录 前言 一、代码实现 二、算法的时空复杂度 时间复杂度&#xff1a; 空间复杂度&#xff1a; 前言 建议&#xff1a;1.学习算法最重要的是理解算法的每一步&#xff0c;而不是记住算法。 2.建议读者学习算法的时候&#xff0c;自己手动一步一步地运行算法。 tips:本算…

力扣热题 100

文章目录 哈希双指针滑动窗口子串普通数组矩阵链表二叉树图论回溯二分查找栈堆贪心算法动态规划多维动态规划技巧 哈希 双指针 移动零 class Solution {public void moveZeroes(int[] nums) {int k 0;for(int i 0;i < nums.length; i){if(nums[i] ! 0) {nums[k] nums[…

2-6基础算法-快速幂/倍增/构造

文章目录 一.快速幂二.倍增三.构造 一.快速幂 快速幂算法是一种高效计算幂ab的方法&#xff0c;特别是当b非常大时。它基于幂运算的性质&#xff0c;将幂运算分解成一系列的平方操作&#xff0c;以此减少乘法的次数。算法的核心在于将指数b表示为二进制形式&#xff0c;并利用…

计算机毕业设计----Springboot+Vue调查问卷管理系统

基于Spring Boot的问卷调查系统 项目介绍 > * 本项目的在线问卷调查调查系统是基于SpringBoot开发的&#xff0c;采用了前后端分离模式来开发。 > * 前端开发使用了Vue、Element UI&#xff0c;后端的开发则是使用了SpringBoot、MyBatis技术。 项目配置 > * 下载…

docker部署开原博客系统halo

1.先看下效果 2.拉取镜像 docker pull halohub/halo:2.10 3.启动 mkdir -p /data/halo && cd /data/halodocker run -it -d --name halo -p 8090:8090 -v /data/halo/.halo2:/root/.halo2 halohub/halo:2.10 4.设置账户密码 设置后登陆 5.登陆 发布博客

【Docker】Dockerfile构建最小镜像

&#x1f973;&#x1f973;Welcome 的Huihuis Code World ! !&#x1f973;&#x1f973; 接下来看看由辉辉所写的关于Docker的相关操作吧 目录 &#x1f973;&#x1f973;Welcome 的Huihuis Code World ! !&#x1f973;&#x1f973; 前言 一.Dockerfile是什么 二.Dock…

【Qt】QThread moveTothread-多线程的两种实现方法

一、如何理解多线程 二、实现多线程的两种方式&#xff08;面向应用&#xff09; 2.1 继承 QThread 的类 2.2 (推荐这种方式)函数 moveTothread() 三、多线程的释放问题&#xff08;善后工作&#xff09; 多线程的两种实现方法 一、如何理解多线程二、实现多线程的两种方式&…

C++核心编程之类和对象---C++面向对象的三大特性--多态

目录 一、多态 1. 多态的概念 2.多态的分类&#xff1a; 1. 静态多态&#xff1a; 2. 动态多态&#xff1a; 3.静态多态和动态多态的区别&#xff1a; 4.动态多态需要满足的条件&#xff1a; 4.1重写的概念&#xff1a; 4.2动态多态的调用&#xff1a; 二、多态 三、多…

快速排序学习笔记

代码框架 // 在数组nums将下标从left到right中进行从小到大排序// 原理是先将一个元素排好序&#xff0c;然后将其他的元素排好序void sort(int[] nums, int left, int right) {if (left > right) {return;}// 对数组nums[left,right]进行切分&#xff0c;使得nums[left,p-1…

Pandoc:markdown转word

简介&#xff1a;Pandoc是由John MacFarlane开发的标记语言转换工具&#xff0c;可实现不同标记语言间的格式转换&#xff0c;堪称该领域中的“瑞士军刀”。Pandoc使用Haskell语言编写&#xff0c;以命令行形式实现与用户的交互&#xff0c;可支持多种操作系统&#xff1b;Pand…

A connection was successfully established with the server but then an error

在使用EFCore生成数据库的时候&#xff0c;报上面的错误&#xff01; 解决方法&#xff1a; 加&#xff08;EncryptTrue;TrustServerCertificateTrue;&#xff09;即可&#xff1a; "ConnectionStrings": { "DefaultConnection": "Data SourceLAP…

大厂咋做支付系统的核对?

核对是保障资金安全的重要机制。 时效角度&#xff0c;主要有&#xff1a; &#xff08;准&#xff09;实时核对 准确性不如离线核对&#xff0c;且需相应实时核对平台建设 离线核对&#xff08;如 T1 核对&#xff09; 主要问题是发现问题的时机较为后置&#xff0c;部分场景…

软件测试|教你使用Python下载图片

前言 我一直觉得Windows系统默认的桌面背景不好看&#xff0c;但是自己又没有好的资源可以进行替换&#xff0c;突然我一个朋友提醒了我&#xff0c;网络上的图片这么多&#xff0c;你甚至可以每天换很多个好看的背景&#xff0c;但是如果让我手动去设置的话&#xff0c;我觉得…

Consider defining a bean of type ‘XXXX‘ in your configuration.

今天学习尚硅谷的SpringCloud时&#xff0c;发现支付模块无法启动&#xff0c;控制台输出下面的错误: 看起来可能是dao层没有被注入。 然后根据我已有的知识&#xff0c;我检查了注解Mapper Mapper public interface PaymentDao {public int create(Payment payment);public…

Nacos下载与安装【Linux】

&#x1f95a;今日鸡汤&#x1f95a; 我不是天生的王者&#xff0c;但我骨子里流动着不让我低头的血液。 ——《海贼王》 目录 &#x1f32d;1.官网下载 &#x1f37f;2.根据需求下载Linux版本 &#x1f953;3.上传到Linux &#x1f9c2;4.解压Nacos &#x1f9c8; 5.…

C++力扣题目701--二叉搜索树中的插入操作

给定二叉搜索树&#xff08;BST&#xff09;的根节点 root 和要插入树中的值 value &#xff0c;将值插入二叉搜索树。 返回插入后二叉搜索树的根节点。 输入数据 保证 &#xff0c;新值和原始二叉搜索树中的任意节点值都不同。 注意&#xff0c;可能存在多种有效的插入方式&a…

温和去油去黑头,只需敷上一刻钟的泥膜就够了

冬季天气干燥&#xff0c;很多朋友脸部更容易出油&#xff0c;连带着黑头也变多了。这是因为干燥的环境会刺激皮脂腺分泌&#xff0c;导致皮肤油脂分泌过多&#xff0c;容易堵塞毛孔形成黑头。因此&#xff0c;在冬季特别需要注意控油去黑头的工作。 控油去黑头需要清洁毛孔&am…