c++ 多态性

news/2024/11/8 23:50:57 标签: c++, 开发语言

类的多态

多态概念入门

#include <iostream>
using namespace std;

/*
多态的前提: 拥有继承关系的类中有相同的函数(返回类型、函数名、形参列表)
多态解决的问题:
    1、派生类的对象被赋值给基类对象时
    2、派生类的对象初始化基类的引用时
    3、基类的指针指向派生类时
  函数调用的问题
总结:
    没有多态时看类型。
    有多态时看内存。
*/

class A
{
public:
    A() {cout << "A" << endl;}
    A(const A& a) {cout << "A(const A& a)" << endl;}

    void fun() {cout << "A::fun()" << endl;}
};

class B : public A
{
public:
    B() {cout << "B" << endl;}
    B(const B& b) {cout << "B(const B& b)" << endl;}

    void fun() {cout << "B::fun()" << endl;}
};

int main(int argc, char *argv[])
{
    B b;

    // 1、派生类的对象可以被赋值给基类对象
    A a = b;
    a.fun();

    // 2、派生类的对象可以初始化基类的引用
    A& a1 = b;
    a1.fun();


    // 3、指向基类的指针也可以指向派生类
    A* a2 = new B;
    a2->fun();	// 调用的是A类函数,但本质确实B的空间

    return 0;
}

多态性

多态性:例如函数重载,同一个函数名会产生不同的结果,而虚函数是实现多态性另一个重要途径

#include <iostream>
using namespace std;

class A
{
    private:
    	int a;
    public:
    	virtual void f();	// 这是虚函数的一个地址,而不是实际的函数,地址所指向的的才是对应的函数
};


int main()
{
    cout << sizeof(A) << endl;	// 4 + 8 = 12 内存对齐原则  最终打印 16
    
    return 0;
}

普通虚函数

#include <iostream>
using namespace std;

class Manmal
{
    public:
    	// 注意点一:
    	// virtual 的三种情况(为了书写规范,基类和派生类必须都写)
    	// 1、基类有     派生类没有   可以构成虚函数
    	// 2、基类有     派生类有     可以构成虚函数
    	// 3、基类没有   派生类有     不可以构成虚函数
    	virtual void sound() { cout << "发出叫声" << endl; }
};

/*
注意点二:
虚函数定义时不需要再次书写 virtual 关键字
void Manmal::sound()
{ cout << "发出叫声" << endl; }
*/

class Cat : public Manmal
{
    public:
    	// 注意点三:
    	// 此时,派生类中拥有和基类相同的函数,这一行为叫做函数的复写(又称覆盖),不是重载
    	// 函数复写的最大特点:基类的指针或引用可以忽略基类已存在的版本,直接调用派生类的版本
    	virtual void sound() { cout << "喵喵喵" << endl; }
};

class Dog : public Manmal
{
    public:
    	// 注意点四:
    	// 普通虚函数派生类可以不进行复写,当注释下方语句时,派生类进行调用则会打印基类虚函数叫声
    	
    	// 理解:基类的虚函数是所有派生类的共同特点,当派生类不具备自己的特点时,则会显示出共同特点
    	virtual void sound() { cout << "汪汪汪" << endl; }
};

// 可以处理一切哺乳动物发出声音这种行为
void feed(Manmal &m)
{
    m.sound();
}
------------------------------------------------------------------------------------------------------------------
/*
void feed(Cat &cat)
{
    cat.sound();
}

void feed(Dog &dog)
{
    dog.sound();
}
*/
------------------------------------------------------------------------------------------------------------------
int main()
{
    Cat *cat = new Cat;
    Dog *dog = new Dog;
    
    feed(*cat);
    feed(*dog);
    /*
    // 上述代码改写 并删除 feed 函数
    Manmal *cat = new Cat;
    Manmal *dog = new Dog;
    
    cat->sound();
    dog->sound();
    */
    
    delete cat;
    delete dog;
    return 0;
}

纯虚函数

概念:相较于普通虚函数(基类中的虚函数必须实现),纯虚函数可以不用实现基类中的虚函数(也可以实现),这个基类称之为抽象基类,但是同时要求派生类必须实现虚函数代码,否则不能定义对象仍旧为抽象基类。

#include <iostream>
using namespace std;

class A	// 抽象基类:专门用于派生子类,自己不能定义对象
{
    public:
    	// 本质:只有实现这个函数才能定义对象,这是所有派生类产生的必须条件。如:战斗机、明航客机、直升机等都必须能飞
    	virtual void f() = 0;	// 纯虚函数定义形式
};


int main()
{
    
    
    return 0;
}

虚函数与构造函数

构造函数不能是虚函数

虚函数意味着要被派生类的各类方法进行复写,而派生类的构造并不能通过基类。

虚函数与析构函数

结论:

若一个类不会派生新的类,则析构函数只需普通函数即可;

若一个类会派生出新的类,则析构函数必须定义为虚函数;

#include <iostream>
using namespace std;

class Base
{
    public:
    	virtual ~Base() { cout << "~Base()" << endl; }
};

class Drived1 : public Base
{
    public:
    	virtual ~Drived1() { cout << "~Drived1()" << endl; }
};

class Drived2 : public Base
{
    public:
    	virtual ~Drived2() { cout << "~Drived2()" << endl; }
};


int main()
{
    // 若不将析构函数定义为虚函数,那么派生类析构时就无法调用派生类的析构函数,不能产生穿透
    // 析构函数相较于普通函数,虚函数复写时名字可以不同,因为一个类只有一个析构函数
    Base *d1 = new Drived1;
    Base *d2 = new Drived2;
    
    delete d1;
    delete d2;
    return 0;
}

运算符重载与友元

运算符函数

在 c++ 中,操作数包含类对象时,运算符操作就是一个函数。除了赋值运算符默认之外,其余都需要进行重载才能使用。

class A
{
    public:
    	// 重载了 + 运算符
    	const A & operator+(const A &b);	// const 是为了保证和普通运算符运算方式一致,如:(a+b)=c 不应该被满足
};

int main()
{
    A a, b;
    
    a + b;	// -----> a.operator+(b)
    
}

/*
返回值类型:A &
函数名:operator+
参数列表:const A &r
*/

类成员运算符重载

#include <iostream>
using namespace std;

class Time
{
    private:
    	int hour;
    	int minute;
    	int second;
    
    public:
    	Time(int h = 0, int m = 0, int s = 0)
            : hour(h), minute(m), second(s){};
    
    	// 加法运算符操作函数重载 (t1 + t2)
    	const Time operator+(const Time &r);
    
    	// 显示时间
    	void show();
};

const Time Time::operator+(const Time &r)
{
    Time tmp;
    
    tmp.second = this->second + r.second;
    if(tmp.second >= 60)
    {
        tmp.minute++;
        tmp.second -= 60;
    }
    
    tmp.minute += this->minute + r.minute;
    if(tmp.minute >= 60)
    {
        tmp.hour++;
        tmp.minute -= 60;
    }
    
    tmp.hour += this->hour + r.hour;
    tmp.hour %= 24;
    
    return tmp;
}

void Time::show()
{
    cout << hour << ":" << minute << ":" << second << endl;
}


int main()
{
    Time t1(1, 50, 33);
    Time t2(0, 20, 33);
    
    Time t3 = t1 + t2;
    t3.show();
    
    return 0;
}

非类成员运算符重载

#include <iostream>
using namespace std;

class Time
{
    public:
    	int hour;
    	int minute;
    	int second;
    
    public:
    	Time(int h = 0, int m = 0, int s = 0)
            : hour(h), minute(m), second(s){};
    
    	// 加法运算符操作函数重载 (t1 + t2)
    	const Time operator+(const Time &r);
    
    	// 类内:输出运算符操作函数重载
    	ostream &operator<<(ostream &out);	
    
    	// 显示时间
    	void show();
};

const Time Time::operator+(const Time &r)
{
    Time tmp;
    tmp.second = this->second + r.second;
    if(tmp.second >= 60)
    {
        tmp.minute++;
        tmp.second -= 60;
    }
    
    tmp.minute += this->minute + r.minute;
    if(tmp.minute >= 60)
    {
        tmp.hour++;
        tmp.minute -= 60;
    }
    
    tmp.hour += this->hour + r.hour;
    tmp.hour %= 24;
    
    return tmp;
}

void Time::show()
{
    cout << hour << ":" << minute << ":" << second << endl;
}

// 类内:输出运算符操作函数重载
ostream &Time::operator<<(ostream &out)
{
    out << hour << ":" << minute << ":" << second << endl;
    return out;
}

// 类外:输出运算符操作函数重载
ostream &operator<<(ostream &out, Time &t)	// 由于是类外重载,所以有多少参数就需要传入多少个
{
    // 存在一个矛盾:此时需要调用类内成员,所以类内成员必须为 public,但是这并不符合类成员数据原则
    out << t.hour << ":" << t.minute << ":" << t.second << endl;
    return out;
}

int main()
{
    Time t1(1, 50, 33);
    Time t2(0, 20, 33);
    
    Time t3 = t1 + t2;
    t3.show();
    
    // 显然,此时类外重载更加匹配平时使用的习惯
    t3 << cout;	// 类内重载运算符
    
    cout << t3 << endl;	// 类外重载运算符
    
    return 0;
}


注意:
    1、定义非类成员运算符函数重载时,必须保证至少有一个参数是自定义类型
    2、运算符的操作数必须从左到右一次填入参数列表中

上述重载存在着一个问题:就是进行类外重载时,必须要让类内部成员数据权限变成public,而这并不符合类成员权限原则。所以需要借助后续的友元来进行解决。

前缀运算符重载

#include <iostream>
using namespace std;

class Time
{
    public:
    	int hour;
    	int minute;
    	int second;
    
    public:
    	Time(int h = 0, int m = 0, int s = 0)
            : hour(h), minute(m), second(s){};
    
    	// 加法运算符操作函数重载 (t1 + t2)
    	const Time operator+(const Time &r);
    
    	// 类内:输出运算符操作函数重载
    	ostream &operator<<(ostream &out);
    
    	// 前缀运算符操作重载
    	Time & operator++();
    
    	// 显示时间
    	void show();
};

const Time Time::operator+(const Time &r)
{
    Time tmp;
    tmp.second = this->second + r.second;
    if(tmp.second >= 60)
    {
        tmp.minute++;
        tmp.second -= 60;
    }
    
    tmp.minute += this->minute + r.minute;
    if(tmp.minute >= 60)
    {
        tmp.hour++;
        tmp.minute -= 60;
    }
    
    tmp.hour += this->hour + r.hour;
    tmp.hour %= 24;
    
    return tmp;
}

void Time::show()
{
    cout << hour << ":" << minute << ":" << second << endl;
}

// 类内:输出运算符操作函数重载
ostream &Time::operator<<(ostream &out)
{
    out << hour << ":" << minute << ":" << second << endl;
    return out;
}

// 类外:输出运算符操作函数重载
ostream &operator<<(ostream &out, Time &t)	// 由于是类外重载,所以有多少参数就需要传入多少个
{
    // 设置宽度为 2,不足则填充为 0
    out.width(2);
    out.fill('0');
    // 存在一个矛盾:此时需要调用类内成员,所以类内成员必须为 public,但是这并不符合类成员数据原则
    out << t.hour << ":" << t.minute << ":" << t.second << endl;
    return out;
}

// 前缀运算符操作重载
Time & Time::operator++()
{
    second++;
    
    second = second >= 60 ? (minute++, 0) : second;
    minute = minute >= 60 ? (hour++, 0) : minute;
    hour %= 24;
    
    return *this;
}


int main()
{
    Time t1(1, 50, 33);
    Time t2(0, 20, 33);
    
    Time t3 = t1 + t2;
    
    cout << "t3.show()" << endl;
    t3.show();
    
    // 显然,此时类外重载更加匹配平时使用的习惯
    cout << "t3 << cout" << endl;
    t3 << cout;	// 类内重载运算符
    
    cout << "cout << t3 << endl" << endl;
    cout << t3 << endl;	// 类外重载运算符
    
    ++t1;
    cout << "++t1" << endl;
    cout << t1 << endl;
    
    return 0;
}

后缀运算符重载

#include <iostream>
using namespace std;

class Time
{
    public:
    	int hour;
    	int minute;
    	int second;
    
    public:
    	Time(int h = 0, int m = 0, int s = 0)
            : hour(h), minute(m), second(s){};
    
    	// 加法运算符操作函数重载 (t1 + t2)
    	const Time operator+(const Time &r);
    
    	// 类内:输出运算符操作函数重载
    	ostream &operator<<(ostream &out);
    
    	// 前缀运算符操作重载
    	Time & operator++();
    
    	// 后缀运算符操作重载
    	const Time operator++(int);	// int 没有实际作用,只是用于区分前缀还是后缀
    
    	// 显示时间
    	void show();
};

const Time Time::operator+(const Time &r)
{
    Time tmp;
    tmp.second = this->second + r.second;
    if(tmp.second >= 60)
    {
        tmp.minute++;
        tmp.second -= 60;
    }
    
    tmp.minute += this->minute + r.minute;
    if(tmp.minute >= 60)
    {
        tmp.hour++;
        tmp.minute -= 60;
    }
    
    tmp.hour += this->hour + r.hour;
    tmp.hour %= 24;
    
    return tmp;
}

void Time::show()
{
    cout << hour << ":" << minute << ":" << second << endl;
}

// 类内:输出运算符操作函数重载
ostream &Time::operator<<(ostream &out)
{
    out << hour << ":" << minute << ":" << second << endl;
    return out;
}

// 类外:输出运算符操作函数重载
ostream &operator<<(ostream &out, Time &t)	// 由于是类外重载,所以有多少参数就需要传入多少个
{
    // 设置宽度为 2,不足则填充为 0
    out.width(2);
    out.fill('0');
    // 存在一个矛盾:此时需要调用类内成员,所以类内成员必须为 public,但是这并不符合类成员数据原则
    out << t.hour << ":" << t.minute << ":" << t.second << endl;
    return out;
}

// 前缀运算符操作重载
Time & Time::operator++()
{
    second++;
    
    second = second >= 60 ? (minute++, 0) : second;
    minute = minute >= 60 ? (hour++, 0) : minute;
    hour %= 24;
    
    return *this;
}

// 后缀运算符操作重载
const Time Time::operator++(int)
{
    // 作出说明1:相较于前缀运算,此时加入 const 是防止出现 t1++ = t2,这一点相较于未重载前冲突
    // 作出说明2:为什么不返回引用?因为在函数内部创建了一个临时变量来保存原值并返回,那么函数结束会释放销毁,返回引用则找不到对应的地址,所以直接返回临时变量的内部数值
    Time tmp = *this;
    
    second++;
    
    second = second >= 60 ? (minute++, 0) : second;
    minute = minute >= 60 ? (hour++, 0) : minute;
    hour %= 24;
    
    return tmp;
}


int main()
{
    Time t1(1, 50, 33);
    Time t2(0, 20, 33);
    
    Time t3 = t1 + t2;
    
    cout << "t3.show()" << endl;
    t3.show();
    
    // 显然,此时类外重载更加匹配平时使用的习惯
    cout << "t3 << cout" << endl;
    t3 << cout;	// 类内重载运算符
    
    cout << "cout << t3 << endl" << endl;
    cout << t3 << endl;	// 类外重载运算符
    
    ++t1;
    cout << "++t1" << endl;
    cout << t1 << endl;
    
    t1++;
    cout << "t1++" << endl;
    cout << t1 << endl;
    
    return 0;
}

友元函数

目的:在类外部非本类成员对类内部非公有数据进行访问。

例如:遥控器仅仅通过自身按钮而非电视机公开按钮去操纵电视机

友元函数并没有破坏封装性原则,应为决定函数是否为友元函数的对象还是类本身

#include <iostream>
using namespace std;

class A
{
    private:
    	int x;
    
    public:
    	A(int x = 0) : x(x){}
    
    // 声明一个友元函数
    friend void show(const A &r);
};

void show(const A &r)
{
    cout << r.x << endl;
}

int main()
{
    A a(6);
    // 友元函数的调用与普通函数一样,不需要类对象引用
    show(a);

    return 0;
}


注意:
    1、友元函数可以直接访问类私有成员,且友元函数定义不需要写 friend 关键字

修改上述非类成员(类外函数)运算符重载代码存在的问题如下:

#include <iostream>
using namespace std;

class Time
{
    private:
    	int hour;
    	int minute;
    	int second;
    
    public:
    	Time(int h = 0, int m = 0, int s = 0)
            : hour(h), minute(m), second(s){};
    
    	// 类外:输出运算符操作函数重载
    	friend ostream &operator<<(ostream &out, Time &t);	
    
    	// 显示时间
    	void show();
};

void Time::show()
{
    cout << hour << ":" << minute << ":" << second << endl;
}


// 类外:输出运算符操作函数重载
ostream &operator<<(ostream &out, Time &t)	// 由于是类外重载,所以有多少参数就需要传入多少个
{
    out << t.hour << ":" << t.minute << ":" << t.second << endl;
    return out;
}

int main()
{
    Time t1(1, 50, 33);
    
    cout << t1 << endl;	// 类外重载运算符
    
    return 0;
}

友元类

#include <iostream>
using namespace std;

class A
{
    private:
    	int a;
    
    public:
    	void show() { cout << a << endl; }
    
    // 将 B 类作为 A 类的友元类
    friend class B;	// B 类中所有类方法都可以访问 A 类中所有成员数据
};

class B
{
    public:
    	void set_A(A &r, int b) { r.a = b; }
};


int main()
{
    A a;
    B b;
    
    b.set_A(a, 6);
    a.show();
    
    return 0;
}

友元类方法

相较于友元类,友元类方法缩小了范围,意思就是在 A 类中只允许 B 类中的部分类方法来开放访问所有成员数据权限。

#include <iostream>
using namespace std;

class A
{
    private:
    	int a;
    
    public:
    	void show() { cout << a << endl; }
    
    // 将 B 类中的部分类方法作为 A 类的友元类方法
    friend void B::set_A(A &r, int b);	// B 类中仅该类方法可以访问 A 类中所有成员数据
};

class B
{
    public:
    	void set_A(A &r, int b) { r.a = b; }
};


int main()
{
    A a;
    B b;
    
    b.set_A(a, 6);
    a.show();
    
    return 0;
}


注意:
    上述方法极其容易出现未定义等现象,要解决上述问题就要分文件处理,主要可以分为 
    main.cpp A.cpp A.h B.cpp B.h


http://www.niftyadmin.cn/n/5744577.html

相关文章

前端 Canvas 绘画 总结

目录 一、使用案例 1、基础使用案例 2、基本案例改为直接JS实现 二、相关资料 1、API教程文档 2、炫酷案例 一、使用案例 1、基础使用案例 使用Canvas的基本步骤&#xff1a; 1、需要一个canvas标签 2、需要获取 画笔 对象 3、使用canvas提供的api进行绘图 <!--…

HTB:Perfection[WriteUP]

目录 连接至HTB服务器并启动靶机 1.What version of OpenSSH is running? 使用nmap对靶机TCP端口进行开放扫描 2.What programming language is the web application written in? 使用浏览器访问靶机80端口页面&#xff0c;并通过Wappalyzer查看页面脚本语言 3.Which e…

基础算法练习--滑动窗口(已完结)

算法介绍 滑动窗口算法来自tcp协议的一种特性,它的高效使得其也变成了算法题的一种重要考点.滑动窗口的实现实际上也是通过两个指针前后遍历集合实现,但是因为它有固定的解题格式,我将其单独做成一个篇章. 滑动窗口的解题格式: 首先,定义两个指针left和right,与双指针不同的…

html的week控件 获取周(星期)的第一天(周一)和最后一天(周日)

html的week控件 获取周(星期)的第一天(周一)和最后一天(周日) <input type"week" id"week" class"my-css" value"ViewBag.DefaultWeek" /><script> function PageList() { var dateStrin…

理解Web登录机制:会话管理与跟踪技术解析(一)

在这篇博客中&#xff0c;我们将深入探讨登录校验、会话技术和会话跟踪技术的基本概念、实现原理及其在Web应用中的应用。我们将介绍常见的会话跟踪技术&#xff0c;如Cookies、Session&#xff0c;并讨论它们的优缺点。同时&#xff0c;我们也会涉及如何使用现有的技术栈来实现…

MySQL 到 ClickHouse 数据同步优化(三)

简述 本文主要介绍 CloudCanal 如何将关系型数据库中数据同步到 ClickHouse&#xff0c;默认使用 ReplacingMergeTree 作为 ClickHouse 表引擎&#xff0c;链路特点包括&#xff1a; 新增 _version、_sign 字段&#xff0c;以便 ClickHouse 准确合并。DML 操作均以 INSERT 写…

量化研究--年化57%全球动量模型策略回测,学习使用

文章声明:本内容为个人的业余研究&#xff0c;和任何单位&#xff0c;机构没有关系&#xff0c;文章出现的股票代码&#xff0c;全部只是测试例子&#xff0c;不做投资参考&#xff0c;投资有风险&#xff0c;代码学习使用&#xff0c;不做商业用途 本文利用全球动量模型策略回…

SpringBoot整合Liquibase对数据库管理和迁移

简介 Liquibase是一个用于用于跟踪、管理和应用数据库变化的开源工具&#xff0c;通过日志文件(changelog)的形式记录数据库的变更(changeset)&#xff0c;然后执行日志文件中的修改&#xff0c;将数据库更新或回滚(rollback)到一致的状态。它的目标是提供一种数据库类型无关的…