C++ 实验三

一、实验内容

1.模板函数(compare)
一般模板函数
特化模板函数
2、模板类Queue或Stack
模板类(Queue,Stack)
成员模板函数
模板特化:模板函数特化、模板成员函数特化、模板类特化
3、模板类AutoPtr
构造函数
析构函数
拷贝构造函数
等号、->、*等运算符重载
主函数调用AutoPtr

二、代码实现

1.queue.h

#ifndef QUEUE_H
#define QUEUE_H
#include <iostream>
#include <cstdlib>

using namespace std;

//类模板:用于生成类
template<class Type> class queue;
template<class Type> class queueItem;
template<class Type> class queueItem
{
   
    Type item;
    queueItem* next;
    queueItem(const Type& t) :item(0), next(0) {
   }
    friend class queue<Type>; //友元类,目的访问这里面的私有成员
    friend ostream& operator<<(ostream& os, const queue<Type>& q);
public:
    queueItem<Type>* operator++() {
     //重载运算符++  用于指向队列里的下一个元素(指针类型)
        return next;
    }
    Type& operator*() {
    //重载运算符*  用于取队列里对应指针的值(取地址后 是Type类的)
        return item;
    }
};

template<class Type> class queue
{
   
public:
    queue() :head(0), tail(0) {
   }  //初始化
    queue(const queue& q) :head(0), tail(0) {
   
        copy_items(q);
    }
    //函数模板:用于生成函数
    template<class It> queue(It beg, It end) : head(0), tail(0) {
     //构造函数:拷贝指定起始位置内容的队列
        copy_items(beg, end);
    }
    template<class It> void assign(It beg, It end);
    queue& operator=(const queue&);
    void push(const Type&); //https://www.cnblogs.com/wss-is-knight/p/3624164.html
    void pop();
    bool empty() const {
   
        return head == 0;
    }
    ~queue() {
     //析构函数
        destory();
    }
    Type& front() {
   //取队列头指针的值(取地址符)
        return head->item;
    }
    const Type& front() const {
    //返回值不能修改,并且不能修改对应对象中成员函数的值~
        return head->item;
    }
    friend ostream& operator<<(ostream& os, const queue<Type>& q) {
     //https://blog.csdn.net/qq_36864672/article/details/76422722
        os << "<";
        queueItem<Type>* p;
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1.声明一个动物基类Animal,私有整型成员变量年龄age,请定义一个派生类Dog,在其成员函数SetAge(int n)中直接给age赋值,测试下看是否会出问题?如何解决? 2.设计一个单基继承的类层次程序,用Person类派生出Student类,增加属性学号index和年级level。Person类中至少有姓名name、年龄age等数据成员,以及构造函数、输出函数等,其余成员函数根据需要添加。在主函数中进行测试。 3.定义一个学生类Student和教师类Teacher,学生类有姓名name、学号index等数据成员,教师类有姓名name、工作证号workID、职称title、课程course、周学时hoursPerWeek等数据成员。再定义一个助教类TeachingAssistant,多继承于学生类和教师类,该类可以使用学生类的全部数据成员,以及教师类的课程和周学时数据成员。要求:每个类提供自定义的构造函数和析构函数,并通过同名函数ShowInfo来显示全部数据成员的值。在主函数中进行测试。 4.声明一个Person,包含姓名name和年龄age等私有数据成员以及相关的成员函数;由它派生出领导类Leader,包含职务position和部门department私有数据成员以及相关的成员函数;再由Person派生出工程师类Engineer,包含职务position和专业speciality私有数据成员以及相关的成员函数;再由Leader和Engineer类派生出主任工程师类Chairman。在主函数中测试各类对象初始化和信息输出,查看是否会出问题?如何解决?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值