我是靠谱客的博主 壮观月亮,最近开发中收集的这篇文章主要介绍c++类模版和运算符重载的运用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近在看数据结构算法c++描述,很久没写c++了,所以就当回忆下,所以以下代码就当练手,输出的是工资的最大值人的姓名和它的工资:

#include<iostream>
#include<vector>
#include<string>
using namespace std;

template <typename Compareable> //模版
const Compareable & findMax(const vector<Compareable> & arr) //Compareable可以表示任意类型,这里是表示Employee类
{
    int maxIndex = 0;
    for(int i=1; i<arr.size(); i++)
    {
        if(arr[maxIndex] < arr[i])
        {
            maxIndex = i;
        }
    }
    return arr[maxIndex];
}
class Employee //雇员的类
{
public:
    void setVaule(const string & n,double s) //构造函数初始化,两个参数
    {
        name = n;
        salary = s;
    }
    const string & getName() const //返回员工的姓名
    {
        return name;
    }
    void print(ostream &out) const //要输出的东西
    {
        out << name << "(" << salary << ")";
    }
    bool operator < (const Employee & rhs) const //运算符重载
    {
        return salary < rhs.salary;
    }
private:
    string name;
    double salary;
};
ostream & operator << (ostream &out,const Employee & rhs) //输出流
{
    rhs.print(out); 
    return out;
}
int main()
{
    vector<Employee> v(3); //vector数组,表示容器内有三个vaule
    v[0].setVaule("George Bush",400000.00);
    v[1].setVaule("Bill Gates",20000000.00);
    v[2].setVaule("Dr.Phil",130000000.00);
    cout<<findMax(v)<<endl; //如果没有用输出流的话,那么这句会报错
}

最后

以上就是壮观月亮为你收集整理的c++类模版和运算符重载的运用的全部内容,希望文章能够帮你解决c++类模版和运算符重载的运用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部